summaryrefslogtreecommitdiff
path: root/test/msan/inline.cc
blob: b2fa9615085694f10105344a8cc938fae0150799 (plain)
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 && %run %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;
}