llvm-6502/test/FrontendObjC/2007-10-23-GC-WriteBarrier.m

10 lines
211 B
Mathematica
Raw Normal View History

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