Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / msan / Linux / check_memcpy.c
blob42af2d7e7d1b10eaea2cf19acb2699e0b349743f
1 // Verify runtime doesn't contain compiler-emitted memcpy/memmove calls.
2 //
3 // REQUIRES: shared_unwind, x86_64-target-arch
5 // RUN: %clang_msan -O1 %s -o %t
6 // RUN: llvm-objdump -d -l %t | FileCheck --implicit-check-not="{{(callq|jmpq) .*<(__interceptor_.*)?mem(cpy|set|move)>}}" %s
8 int main() { return 0; }