aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Coverage/codegen-gnu.m
AgeCommit message (Collapse)AuthorFilesLines
2012-07-03Rename the GCC Objective-C runtime to gcc from gnu-fragile and the GNUstepDavid Chisnall1-1/+1
runtime to gnustep from gnu. Fix EH for the GCC runtime. llvm-svn: 159684
2012-06-20Restructure how the driver communicates information about theJohn McCall1-1/+1
target Objective-C runtime down to the frontend: break this down into a single target runtime kind and version, and compute all the relevant information from that. This makes it relatively painless to add support for new runtimes to the compiler. Make the new -cc1 flag, -fobjc-runtime=blah-x.y.z, available at the driver level as a better and more general alternative to -fgnu-runtime and -fnext-runtime. This new concept of an Objective-C runtime also encompasses what we were previously separating out as the "Objective-C ABI", so fragile vs. non-fragile runtimes are now really modelled as different kinds of runtime, paving the way for better overall differentiation. As a sort of special case, continue to accept the -cc1 flag -fobjc-runtime-has-weak, as a sop to PLCompatibilityWeak. I won't go so far as to say "no functionality change", even ignoring the new driver flag, but subtle changes in driver semantics are almost certainly not intended. llvm-svn: 158793
2011-02-22Make clang -cc1 disable Objective-C exceptions by default, and add a ↵Anders Carlsson1-1/+1
-fobjc-exceptions flag to turn them on. Update all tests accordingly. llvm-svn: 126177
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar1-1/+1
- This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446
2009-12-14Make tests use the new clang -cc1 flag.Fariborz Jahanian1-1/+1
llvm-svn: 91303
2009-05-18Simplify tests now that GNU runtime supports exception handling.Daniel Dunbar1-3/+0
llvm-svn: 72021
2009-05-17This patch fixes two bugs in the GNU Objective-C runtime implementation. ↵Fariborz Jahanian1-2/+1
One is a case in rethrowing exceptions where the C types don't match correctly (I already sent this patch to Daniel Dunbar, who found the bug, so it may have already been committed). The other fixes the case properties so that the methods generated as property accessors are added to the class structure correctly. Patch by David Chisnall. llvm-svn: 71980
2009-03-24Rename clang to clang-cc.Daniel Dunbar1-3/+3
Tests and drivers updated, still need to shuffle dirs. llvm-svn: 67602
2009-03-24Use not instead of ! in tests.Daniel Dunbar1-1/+1
llvm-svn: 67601
2009-02-04Force triple for this test case.Daniel Dunbar1-3/+3
llvm-svn: 63699
2008-10-24Use #define trickery to de-XFAIL test/Coverage/codegen-gnu.m whileDaniel Dunbar1-3/+5
still getting coverage for non-IRgen cases. llvm-svn: 58084
2008-10-05Improve codegen coverage tests.Daniel Dunbar1-0/+5
- Hit debug info generation. - Hit both ObjC runtimes. llvm-svn: 57088