summaryrefslogtreecommitdiffstats
path: root/test/expect/gccxml.any.Function-calling-convention-ms.xml.txt
Commit message (Collapse)AuthorAgeFilesLines
* Output: Move function type attributes to end of element attribute listBrad King2015-05-271-3/+3
| | | | | | | Function type attributes like attributes="__thiscall__" are specific to the architecture and so may need to be filtered during testing. Move them to be the last xml attribute in their element to make filtering easier.
* Output: Add mangled="" attributes to function and variable declsBrad King2015-05-121-4/+4
| | | | | | The gccxml output format includes mangled="" attributes on almost all elements. Clang only defines mangling for function and variable declarations. Add mangled attributes to castxml output where possible.
* Output: Add "size" and "align" attributes on builtin types and structsMichka Popoff2015-04-081-1/+1
| | | | | | This information is produced by gccxml, so add it to our output too. Since we don't know the architecture that will be targeted during testing, match any size and align values with "[0-9]+".
* Output: Add function calling convention attributesBrad King2014-04-141-0/+26
Add to Function-like and FunctionType elements an attributes="" attribute for the calling convention as gccxml does.