blob: 4bbe4407bed993c63debf33507e81e2f7beb76a6 [file] [log] [blame]
// RUN: %llvmgcc -x objective-c -S %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;
}