2010-11-26 05:46:07 +08:00
|
|
|
// RUN: %llvmgcc -x objective-c -S %s -o /dev/null -fobjc-gc
|
2007-10-24 02:07:23 +08:00
|
|
|
// rdar://5541393
|
|
|
|
|
|
|
|
typedef unsigned int NSUInteger;
|
|
|
|
__attribute__((objc_gc(strong))) float *_scores;
|
|
|
|
|
|
|
|
void foo(int i, float f) {
|
|
|
|
_scores[i] = f;
|
|
|
|
}
|