1 // RUN: %clangxx_msan -O3 %s -o %t && %run %t
3 // Test that no_sanitize_memory attribute applies even when the function would
4 // be normally inlined.
8 __attribute__((no_sanitize_memory
))
10 if (*p
) // BOOOM?? Nope!
15 int main(int argc
, char **argv
) {
17 int * volatile p
= &x
;