Sign in
android
/
platform
/
external
/
compiler-rt
/
refs/heads/android13-frc-ipsec-release
/
.
/
test
/
asan
/
TestCases
/
Helpers
/
initialization-bug-extra2.cc
blob: a3d8f190e58bf0a4578822e07630afb54a0dcb83 [
file
] [
log
] [
blame
] [
edit
]
// 'z' is dynamically initialized global from different TU.
extern
int
z
;
int
__attribute__
((
noinline
))
initY
()
{
return
z
+
1
;
}
int
y
=
initY
();