• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: %llvmgcc -x objective-c -S %s -o /dev/null -fobjc-gc
2// rdar://5541393
3
4typedef unsigned int NSUInteger;
5__attribute__((objc_gc(strong))) float *_scores;
6
7void foo(int i, float f) {
8  _scores[i] = f;
9}
10