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