aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenObjC/2007-10-23-GC-WriteBarrier.m
blob: 01eefd41d653e8dacdbdd91a193758383cce29f1 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null -fobjc-gc

typedef unsigned int NSUInteger;
__attribute__((objc_gc(strong))) float *_scores;

void foo(int i, float f) {
  _scores[i] = f; 
}