new testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43252 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-10-23 18:07:23 +00:00
parent ee19b866c3
commit a91547790b

View File

@ -0,0 +1,9 @@
// RUN: %llvmgcc -x objective-c -c %s -o /dev/null -fobjc-gc
// rdar://5541393
typedef unsigned int NSUInteger;
__attribute__((objc_gc(strong))) float *_scores;
void foo(int i, float f) {
_scores[i] = f;
}