summaryrefslogtreecommitdiff
path: root/test/tsan/Linux/check_memcpy.cc
blob: 8ad04c07cf514fc6d0130889656b765339d5c928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Test that verifies TSan runtime doesn't contain compiler-emitted
// memcpy/memmove calls. It builds the binary with TSan and passes it to
// check_memcpy.sh script.

// RUN: %clangxx_tsan -O1 %s -o %t
// RUN: llvm-objdump -d %t | FileCheck %s

int main() {
  return 0;
}

// CHECK-NOT: callq {{.*<(__interceptor_)?mem(cpy|set)>}}
// tail calls:
// CHECK-NOT: jmpq {{.*<(__interceptor_)?mem(cpy|set)>}}