xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/2007-10-23-GC-WriteBarrier.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// RUN: %clang_cc1 -emit-llvm %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