summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen
diff options
context:
space:
mode:
authorKrzysztof Parzyszek <kparzysz@codeaurora.org>2015-04-13 18:39:52 +0000
committerKrzysztof Parzyszek <kparzysz@codeaurora.org>2015-04-13 18:39:52 +0000
commit13b4b013b557a3b1e39105bbf783098dcf533474 (patch)
treea7cb785e87c412b0c43ae1bbf11983ad10db0487 /llvm/test/CodeGen
parent6292b30bab5a7d44760756fee036b8f04d712019 (diff)
downloadbcm5719-llvm-13b4b013b557a3b1e39105bbf783098dcf533474.tar.gz
bcm5719-llvm-13b4b013b557a3b1e39105bbf783098dcf533474.zip
Make the ARM testcase from r234764 also pass on Thumb
llvm-svn: 234772
Diffstat (limited to 'llvm/test/CodeGen')
-rw-r--r--llvm/test/CodeGen/ARM/tail-call-mem-intrinsics.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/ARM/tail-call-mem-intrinsics.ll b/llvm/test/CodeGen/ARM/tail-call-mem-intrinsics.ll
index d9e7f4413c1..c58e143a206 100644
--- a/llvm/test/CodeGen/ARM/tail-call-mem-intrinsics.ll
+++ b/llvm/test/CodeGen/ARM/tail-call-mem-intrinsics.ll
@@ -1,7 +1,7 @@
; RUN: llc -march=arm < %s | FileCheck %s
; CHECK-LABEL: tail_memcpy:
-; CHECK: b memcpy
+; CHECK: b{{l?}} memcpy
define void @tail_memcpy(i8* nocapture %p, i8* nocapture readonly %q, i32 %n) #0 {
entry:
tail call void @llvm.memcpy.p0i8.p0i8.i32(i8* %p, i8* %q, i32 %n, i32 1, i1 false)
@@ -9,7 +9,7 @@ entry:
}
; CHECK-LABEL: tail_memmove:
-; CHECK: b memmove
+; CHECK: b{{l?}} memmove
define void @tail_memmove(i8* nocapture %p, i8* nocapture readonly %q, i32 %n) #0 {
entry:
tail call void @llvm.memmove.p0i8.p0i8.i32(i8* %p, i8* %q, i32 %n, i32 1, i1 false)
@@ -17,7 +17,7 @@ entry:
}
; CHECK-LABEL: tail_memset:
-; CHECK: b memset
+; CHECK: b{{l?}} memset
define void @tail_memset(i8* nocapture %p, i8 %c, i32 %n) #0 {
entry:
tail call void @llvm.memset.p0i8.i32(i8* %p, i8 %c, i32 %n, i32 1, i1 false)
OpenPOWER on IntegriCloud