llvm-project/compiler-rt/test/asan/TestCases/Helpers/initialization-blacklist-extra2.cc
Alexey Samsonov 9f20d67034 Move ASan lit-tests under test/asan
llvm-svn: 201413
2014-02-14 14:06:10 +00:00

5 lines
98 B
C++

int zero_init();
int badSrcGlobal = zero_init();
int readBadSrcGlobal() { return badSrcGlobal; }