1 // RUN: %clangxx_asan %s -o %t && %run %t | FileCheck %s
20 __attribute__((section(".preinit_array")))
21 void (*call_foo
)(void) = &foo
;
23 __attribute__((section(".init_array")))
24 void (*call_foo_2
)(void) = &foo
;
26 __attribute__((section(".fini_array")))
27 void (*call_foo_3
)(void) = &fini
;