Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
81fe1fbf4abd00b24e078a80cb15a2d2c1343f11
/
.
/
compiler-rt
/
test
/
asan
/
TestCases
/
Helpers
/
initialization-bug-extra.cc
blob: 3c4cb411defad5bd13c4b98a3462d0a3cc9b82b5 [
file
] [
log
] [
blame
]
// This file simply declares a dynamically initialized var by the name of 'y'.
int
initY
()
{
return
5
;
}
int
y
=
initY
();