llvm-6502/test/FrontendObjC/2007-10-23-GC-WriteBarrier.m
Chris Lattner a91547790b new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43252 91177308-0d34-0410-b5e6-96231b3b80d8
2007-10-23 18:07:23 +00:00

10 lines
211 B
Objective-C

// 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;
}