brintos

brintos / llvm-project-archived public Read only

0
0
Text · 309 B · 42af2d7 Raw
9 lines · c
1// Verify runtime doesn't contain compiler-emitted memcpy/memmove calls.2//3// REQUIRES: shared_unwind, x86_64-target-arch4 5// RUN: %clang_msan -O1 %s -o %t6// RUN: llvm-objdump -d -l %t | FileCheck --implicit-check-not="{{(callq|jmpq) .*<(__interceptor_.*)?mem(cpy|set|move)>}}" %s7 8int main() { return 0; }9