xref: /aosp_15_r20/external/compiler-rt/test/asan/TestCases/Linux/globals-gc-sections.cc (revision 7c3d14c8b49c529e04be81a3ce6f5cc23712e4c6)
1*7c3d14c8STreehugger Robot // RUN: %clangxx_asan %s -o %t -Wl,--gc-sections -ffunction-sections -mllvm -asan-globals=0
2*7c3d14c8STreehugger Robot // RUN: %clangxx_asan %s -o %t -Wl,--gc-sections -ffunction-sections -mllvm -asan-globals=1
3*7c3d14c8STreehugger Robot 
4*7c3d14c8STreehugger Robot // https://code.google.com/p/address-sanitizer/issues/detail?id=260
5*7c3d14c8STreehugger Robot // XFAIL: *
6*7c3d14c8STreehugger Robot 
7*7c3d14c8STreehugger Robot int undefined();
8*7c3d14c8STreehugger Robot 
9*7c3d14c8STreehugger Robot int (*unused)() = undefined;
10*7c3d14c8STreehugger Robot 
main()11*7c3d14c8STreehugger Robot int main() {
12*7c3d14c8STreehugger Robot         return 0;
13*7c3d14c8STreehugger Robot }
14