(Hopefully) unbreak Apple-style builds.
[llvm/msp430.git] / test / FrontendObjC / 2007-10-23-GC-WriteBarrier.m
blob866c3304887ed36514a2f9227e4476036d64c5bc
1 // RUN: %llvmgcc -x objective-c -c %s -o /dev/null -fobjc-gc
2 // rdar://5541393
4 typedef unsigned int NSUInteger;
5 __attribute__((objc_gc(strong))) float *_scores;
7 void foo(int i, float f) {
8   _scores[i] = f;