summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2012-08-30 23:51:20 +0000
committerOwen Anderson <resistor@mac.com>2012-08-30 23:51:20 +0000
commit9e3b6dfc2f4c10de4cd8f509b12769c6870aa805 (patch)
tree08f7f664555f94b1263137a294a703046114778a
parent43da6c7f13aedcc11530f9d81dbbb2ee07ad226a (diff)
downloadllvm-9e3b6dfc2f4c10de4cd8f509b12769c6870aa805.tar.gz
llvm-9e3b6dfc2f4c10de4cd8f509b12769c6870aa805.tar.bz2
llvm-9e3b6dfc2f4c10de4cd8f509b12769c6870aa805.tar.xz
Try to make this test more generic to unbreak buildbots.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162958 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/X86/fp-fast.ll18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/CodeGen/X86/fp-fast.ll b/test/CodeGen/X86/fp-fast.ll
index 61f59b4498..7d1046d029 100644
--- a/test/CodeGen/X86/fp-fast.ll
+++ b/test/CodeGen/X86/fp-fast.ll
@@ -2,9 +2,9 @@
; CHECK: test1
define float @test1(float %a) {
-; CHECK-NOT: vaddss
-; CHECK: vmulss
-; CHECK-NOT: vaddss
+; CHECK-NOT: addss
+; CHECK: mulss
+; CHECK-NOT: addss
; CHECK: ret
%t1 = fadd float %a, %a
%r = fadd float %t1, %t1
@@ -13,9 +13,9 @@ define float @test1(float %a) {
; CHECK: test2
define float @test2(float %a) {
-; CHECK-NOT: vaddss
-; CHECK: vmulss
-; CHECK-NOT: vaddss
+; CHECK-NOT: addss
+; CHECK: mulss
+; CHECK-NOT: addss
; CHECK: ret
%t1 = fmul float 4.0, %a
%t2 = fadd float %a, %a
@@ -25,9 +25,9 @@ define float @test2(float %a) {
; CHECK: test3
define float @test3(float %a) {
-; CHECK-NOT: vaddss
-; CHECK: vxorps
-; CHECK-NOT: vaddss
+; CHECK-NOT: addss
+; CHECK: xorps
+; CHECK-NOT: addss
; CHECK: ret
%t1 = fmul float 2.0, %a
%t2 = fadd float %a, %a