[llvm] r234772 - Make the ARM testcase from r234764 also pass on Thumb

Krzysztof Parzyszek kparzysz at codeaurora.org
Mon Apr 13 11:39:53 PDT 2015


Author: kparzysz
Date: Mon Apr 13 13:39:52 2015
New Revision: 234772

URL: http://llvm.org/viewvc/llvm-project?rev=234772&view=rev
Log:
Make the ARM testcase from r234764 also pass on Thumb

Modified:
    llvm/trunk/test/CodeGen/ARM/tail-call-mem-intrinsics.ll

Modified: llvm/trunk/test/CodeGen/ARM/tail-call-mem-intrinsics.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/tail-call-mem-intrinsics.ll?rev=234772&r1=234771&r2=234772&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/tail-call-mem-intrinsics.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/tail-call-mem-intrinsics.ll Mon Apr 13 13:39:52 2015
@@ -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)





More information about the llvm-commits mailing list