Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
ae77a201488fc439bfdfa6314b947a1f5457b701
/
.
/
test
/
FrontendObjC
/
2007-10-23-GC-WriteBarrier.m
blob: 866c3304887ed36514a2f9227e4476036d64c5bc [
file
] [
log
] [
blame
]
// 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
;
}