aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenCXX/microsoft-abi-constexpr-vs-inheritance.cpp
AgeCommit message (Collapse)AuthorFilesLines
2016-12-13CodeGen: New vtable group representation: struct of vtable arrays.Peter Collingbourne1-2/+2
In a future change, this representation will allow us to use the new inrange annotation on getelementptr to allow the optimizer to split vtable groups. Differential Revision: https://reviews.llvm.org/D22296 llvm-svn: 289584
2014-01-14Remove the -cxx-abi command-line flag.Hans Wennborg1-1/+1
This makes the C++ ABI depend entirely on the target: MS ABI for -win32 triples, Itanium otherwise. It's no longer possible to do weird combinations. To be able to run a test with a specific ABI without constraining it to a specific triple, new substitutions are added to lit: %itanium_abi_triple and %ms_abi_triple can be used to get the current target triple adjusted to the desired ABI. For example, if the test suite is running with the i686-pc-win32 target, %itanium_abi_triple will expand to i686-pc-mingw32. Differential Revision: http://llvm-reviews.chandlerc.com/D2545 llvm-svn: 199250
2013-09-27Abstract out the emission of vtables, add basic support for vtable emission ↵Timur Iskhodzhanov1-0/+23
when using -cxx-abi microsoft Reviewed at http://llvm-reviews.chandlerc.com/D1532 llvm-svn: 191523