summaryrefslogtreecommitdiff
path: root/test/CodeGen/Mips/buildpairextractelementf64.ll
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2011-04-19 00:14:43 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2011-04-19 00:14:43 +0000
commit775c3e58246befc4a6fd943e9db37a1cfb32cce2 (patch)
tree47ba1a423647b6516d2aa5b0826ae550a48a8e14 /test/CodeGen/Mips/buildpairextractelementf64.ll
parentb58a340fa2affa0da27a46c94dd49ba079c9343c (diff)
Make tests register allocation independent again.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129739 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Mips/buildpairextractelementf64.ll')
-rw-r--r--test/CodeGen/Mips/buildpairextractelementf64.ll16
1 files changed, 6 insertions, 10 deletions
diff --git a/test/CodeGen/Mips/buildpairextractelementf64.ll b/test/CodeGen/Mips/buildpairextractelementf64.ll
index 23eb63c2f27..585bc250fb8 100644
--- a/test/CodeGen/Mips/buildpairextractelementf64.ll
+++ b/test/CodeGen/Mips/buildpairextractelementf64.ll
@@ -1,13 +1,11 @@
-; RUN: llc < %s -march=mipsel | FileCheck %s -check-prefix=CHECK-EL
-; RUN: llc < %s -march=mips | FileCheck %s -check-prefix=CHECK-EB
+; RUN: llc < %s -march=mipsel | FileCheck %s
+; RUN: llc < %s -march=mips | FileCheck %s
@a = external global i32
define double @f(i32 %a1, double %d) nounwind {
entry:
-; CHECK-EL: mtc1 $6, $f12
-; CHECK-EL: mtc1 $7, $f13
-; CHECK-EB: mtc1 $7, $f12
-; CHECK-EB: mtc1 $6, $f13
+; CHECK: mtc1
+; CHECK: mtc1
store i32 %a1, i32* @a, align 4
%add = fadd double %d, 2.000000e+00
ret double %add
@@ -15,10 +13,8 @@ entry:
define void @f3(double %d, i32 %a1) nounwind {
entry:
-; CHECK-EL: mfc1 ${{[0-9]+}}, $f12
-; CHECK-EL: mfc1 $7, $f13
-; CHECK-EB: mfc1 ${{[0-9]+}}, $f13
-; CHECK-EB: mfc1 $7, $f12
+; CHECK: mfc1
+; CHECK: mfc1
tail call void @f2(i32 %a1, double %d) nounwind
ret void
}