brintos

brintos / llvm-project-archived public Read only

0
0
Text · 325 B · 54d3ee7 Raw
13 lines · c
1// Test that HWASan shadow is initialized before .preinit_array functions run.2 3// RUN: %clang_hwasan %s -o %t4// RUN: %run %t5 6volatile int Global;7void StoreToGlobal() { Global = 42; }8 9__attribute__((section(".preinit_array"), used))10void (*__StoreToGlobal_preinit)() = StoreToGlobal;11 12int main() { return Global != 42; }13