From 75f1ab4b1b930c4cf2745b6f8d5a09989a96f4f5 Mon Sep 17 00:00:00 2001 From: Krzysztof Parzyszek Date: Mon, 13 Apr 2015 18:39:52 +0000 Subject: [PATCH] Make the ARM testcase from r234764 also pass on Thumb git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234772 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/ARM/tail-call-mem-intrinsics.ll | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/CodeGen/ARM/tail-call-mem-intrinsics.ll b/test/CodeGen/ARM/tail-call-mem-intrinsics.ll index d9e7f4413c1..c58e143a206 100644 --- a/test/CodeGen/ARM/tail-call-mem-intrinsics.ll +++ b/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) -- 2.11.0