[NFC][AArch64] Explicitly define undefined bits for instructions (#122129)
[llvm-project.git] / compiler-rt / test / asan / TestCases / Helpers / initialization-bug-extra.cpp
blob3c4cb411defad5bd13c4b98a3462d0a3cc9b82b5
1 // This file simply declares a dynamically initialized var by the name of 'y'.
2 int initY() {
3 return 5;
5 int y = initY();