[llvm] r237410 - Fix the check strings in a test case committed in r212455.

Akira Hatanaka ahatanaka at apple.com
Thu May 14 17:12:26 PDT 2015


Author: ahatanak
Date: Thu May 14 19:12:26 2015
New Revision: 237410

URL: http://llvm.org/viewvc/llvm-project?rev=237410&view=rev
Log:
Fix the check strings in a test case committed in r212455.
 
The access size (8, in this case) was missing in the function name that was
being checked.

Modified:
    llvm/trunk/test/Instrumentation/AddressSanitizer/X86/asm_attr.ll

Modified: llvm/trunk/test/Instrumentation/AddressSanitizer/X86/asm_attr.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Instrumentation/AddressSanitizer/X86/asm_attr.ll?rev=237410&r1=237409&r2=237410&view=diff
==============================================================================
--- llvm/trunk/test/Instrumentation/AddressSanitizer/X86/asm_attr.ll (original)
+++ llvm/trunk/test/Instrumentation/AddressSanitizer/X86/asm_attr.ll Thu May 14 19:12:26 2015
@@ -4,8 +4,8 @@ target datalayout = "e-m:e-i64:64-f80:12
 target triple = "x86_64-unknown-linux-gnu"
 
 ; CHECK-LABEL: mov_no_attr
-; CHECK-NOT: callq __asan_report_load at PLT
-; CHECK-NOT: callq __asan_report_store at PLT
+; CHECK-NOT: callq __asan_report_load8 at PLT
+; CHECK-NOT: callq __asan_report_store8 at PLT
 define void @mov_no_attr(i64* %dst, i64* %src) {
   tail call void asm sideeffect "movq ($1), %rax  \0A\09movq %rax, ($0)  \0A\09", "r,r,~{memory},~{rax},~{dirflag},~{fpsr},~{flags}"(i64* %dst, i64* %src)
   ret void





More information about the llvm-commits mailing list