xref: /llvm-project/compiler-rt/test/asan/TestCases/Linux/check_memcpy.c (revision 0a71e25e2448ee471b1ebe74e910c5de9b9c82b4)
1 // Verify runtime doesn't contain compiler-emitted memcpy/memmove calls.
2 //
3 // REQUIRES: shared_unwind, x86_64-target-arch
4 
5 // RUN: %clang_asan -O1 %s -o %t
6 // RUN: llvm-objdump -d -l %t | FileCheck --implicit-check-not="{{(callq|jmpq) .*<(__interceptor_.*)?mem(cpy|set|move)>}}" %s
7 
main()8 int main() { return 0; }
9