Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
llvm-project
/
compiler-rt
/
test
/
profile
/
Inputs
/
comdat_rename.h
blob: d30628f13b63caf243f11567e37e37566e27975a [
file
] [
log
] [
blame
]
struct
FOO
{
FOO
()
:
a
(
0
),
b
(
0
)
{}
int
callee
();
__attribute__
((
noinline
))
void
caller
(
int
n
)
{
int
r
=
callee
();
if
(
r
==
0
)
{
a
+=
n
;
b
+=
1
;
}
}
int
a
;
int
volatile
b
;
};