Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
b633c4ee622df81d4572ef57dac54ebed69bb9bf
/
.
/
test
/
CodeGenObjC
/
attr-strong.c
blob: ca83334494350c2a42f63d8e309e1c68c563fcb3 [
file
] [
log
] [
blame
]
Daniel Dunbar
f3ef07c
2009-04-18 08:54:40 +0000
[
diff
] [
blame
]
1
// RUN: clang -emit-llvm -S -o %t %s
2
3
struct
s0
{
4
void
*
a
;
5
};
6
struct
s0
*
__attribute__
((
objc_gc
(
strong
)))
g0
;
7
void
f0
(
void
)
{
8
g0
->
a
=
0
;
9
}