diff options
| author | Akira Hatanaka <ahatanaka@apple.com> | 2015-05-15 00:12:26 +0000 |
|---|---|---|
| committer | Akira Hatanaka <ahatanaka@apple.com> | 2015-05-15 00:12:26 +0000 |
| commit | 60f21fdd503ab964bf1bb44d0e74eaffaa802682 (patch) | |
| tree | f13993c6c7b5ed695857c1ba92e760823b7d2b13 | |
| parent | f2d356f8eb2230df3f994579ede7ee96817557c3 (diff) | |
| download | bcm5719-llvm-60f21fdd503ab964bf1bb44d0e74eaffaa802682.tar.gz bcm5719-llvm-60f21fdd503ab964bf1bb44d0e74eaffaa802682.zip | |
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.
llvm-svn: 237410
| -rw-r--r-- | llvm/test/Instrumentation/AddressSanitizer/X86/asm_attr.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Instrumentation/AddressSanitizer/X86/asm_attr.ll b/llvm/test/Instrumentation/AddressSanitizer/X86/asm_attr.ll index 0667a147487..95e4125bc74 100644 --- a/llvm/test/Instrumentation/AddressSanitizer/X86/asm_attr.ll +++ b/llvm/test/Instrumentation/AddressSanitizer/X86/asm_attr.ll @@ -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 |

