1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/FrontendObjC/2007-10-23-GC-WriteBarrier.m
Chris Lattner 2cf65be2c4 new testcase
llvm-svn: 43252
2007-10-23 18:07:23 +00:00

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;
}