aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenObjC/ivar-layout-array0-struct.m
AgeCommit message (Collapse)AuthorFilesLines
2015-05-12Changed renaming of local symbols by inserting a dot vefore the numeric suffixSunil Srivastava1-1/+1
details in http://reviews.llvm.org/D9483 goes with llvm checkin r237150 llvm-svn: 237151
2013-12-04clang/test: REQUIRES: s/x86-64-registered-target/x86-registered-target/NAKAMURA Takumi1-1/+1
llvm-svn: 196350
2013-09-04Don't pass -O0 to clang_cc1, it is the default.Rafael Espindola1-1/+1
llvm-svn: 189910
2013-08-12Fix FileCheck --check-prefix lines.Tim Northover1-1/+1
Various tests had sprung up over the years which had --check-prefix=ABC on the RUN line, but "CHECK-ABC:" later on. This happened to work before, but was strictly incorrect. FileCheck is getting stricter soon though. Patch by Ron Ofir. llvm-svn: 188174
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-10-02Make -fobjc-nonfragile-abi the -cc1 default, since it's theJohn McCall1-1/+1
increasingly prevailing case to the point that new features like ARC don't even support the fragile ABI anymore. This required a little bit of reshuffling with exceptions because a check was assuming that ObjCNonFragileABI was only being set in ObjC mode, and that's actually a bit obnoxious to do. Most, though, it involved a perl script to translate a ton of test cases. Mostly no functionality change for driver users, although there are corner cases with disabling language-specific exceptions that we should handle more correctly now. llvm-svn: 140957
2011-06-03These tests require particular registered targets. Declared as such.Galina Kistanova1-0/+1
llvm-svn: 132600
2011-01-03Consider zero-length array of structs whenFariborz Jahanian1-0/+22
computing ivar layouts for objc-gc. Fixes // rdar://8800513 llvm-svn: 122762