mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
2cf65be2c4
llvm-svn: 43252
10 lines
211 B
Objective-C
10 lines
211 B
Objective-C
// RUN: %llvmgcc -x objective-c -c %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;
|
|
}
|