bolt/deps/llvm-18.1.8/compiler-rt/test/msan/Linux/check_memcpy.c
2025-02-14 19:21:04 +01:00

8 lines
309 B
C

// Verify runtime doesn't contain compiler-emitted memcpy/memmove calls.
//
// REQUIRES: shared_unwind, x86_64-target-arch
// RUN: %clang_msan -O1 %s -o %t
// RUN: llvm-objdump -d -l %t | FileCheck --implicit-check-not="{{(callq|jmpq) .*<(__interceptor_.*)?mem(cpy|set|move)>}}" %s
int main() { return 0; }