Fix the check strings in a test case committed in r212455.
authorAkira Hatanaka <ahatanaka@apple.com>
Fri, 15 May 2015 00:12:26 +0000 (00:12 +0000)
committerAkira Hatanaka <ahatanaka@apple.com>
Fri, 15 May 2015 00:12:26 +0000 (00:12 +0000)
The access size (8, in this case) was missing in the function name that was
being checked.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237410 91177308-0d34-0410-b5e6-96231b3b80d8

test/Instrumentation/AddressSanitizer/X86/asm_attr.ll

index 0667a14748737fbc1dd9950817b2d16e8e1ea3fe..95e4125bc7484512d032e5cc28266df2543e3794 100644 (file)
@@ -4,8 +4,8 @@ target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
 target triple = "x86_64-unknown-linux-gnu"
 
 ; CHECK-LABEL: mov_no_attr
-; CHECK-NOT: callq __asan_report_load@PLT
-; CHECK-NOT: callq __asan_report_store@PLT
+; CHECK-NOT: callq __asan_report_load8@PLT
+; CHECK-NOT: callq __asan_report_store8@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