brintos

brintos / llvm-project-archived public Read only

0
0
Text · 188 B · 01eefd4 Raw
9 lines · plain
1// RUN: %clang_cc1 -emit-llvm %s -o /dev/null -fobjc-gc2 3typedef unsigned int NSUInteger;4__attribute__((objc_gc(strong))) float *_scores;5 6void foo(int i, float f) {7  _scores[i] = f; 8}9