Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
41595d43d5fce5f8f344a641dd4204694c72f604
/
.
/
clang
/
test
/
CodeGenObjC
/
attr-strong.c
blob: ca83334494350c2a42f63d8e309e1c68c563fcb3 [
file
] [
log
] [
blame
]
Daniel Dunbar
41595d4
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
}