blob: 4aeb15583f848e5925f408902379dccb9aebf86b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// RUN: %clangxx_msan -O3 %s -o %t && %t
// Test that no_sanitize_memory attribute applies even when the function would
// be normally inlined.
#include <stdlib.h>
__attribute__((no_sanitize_memory))
int f(int *p) {
if (*p) // BOOOM?? Nope!
exit(0);
return 0;
}
int main(int argc, char **argv) {
int x;
int * volatile p = &x;
int res = f(p);
return 0;
}
|