1 // Test that HWASan shadow is initialized before .preinit_array functions run.
3 // RUN: %clang_hwasan %s -o %t
7 void StoreToGlobal() { Global
= 42; }
9 __attribute__((section(".preinit_array"), used
))
10 void (*__StoreToGlobal_preinit
)() = StoreToGlobal
;
12 int main() { return Global
!= 42; }