Land the long talked about "type system rewrite" patch. This
[llvm/stm8.git] / test / FrontendObjC / 2007-10-23-GC-WriteBarrier.m
blob4bbe4407bed993c63debf33507e81e2f7beb76a6
1 // RUN: %llvmgcc -x objective-c -S %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;