1 // RUN: %clangxx_asan -O3 %s -o %t && %run %t
3 // Test that no_sanitize_address attribute applies even when the function would
4 // be normally inlined.
8 __attribute__((no_sanitize_address
))
10 return *p
; // BOOOM?? Nope!
13 int main(int argc
, char **argv
) {
14 int * volatile x
= (int*)malloc(2*sizeof(int) + 2);