forked from OSchip/llvm-project
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
This commit is contained in:
parent
f2d356f8eb
commit
60f21fdd50
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue