OSDN Git Service

[NFC][CodeGen] Remove duplicate test in fp-fast.ll
authorCameron McInally <cameron.mcinally@nyu.edu>
Thu, 6 Jun 2019 14:52:16 +0000 (14:52 +0000)
committerCameron McInally <cameron.mcinally@nyu.edu>
Thu, 6 Jun 2019 14:52:16 +0000 (14:52 +0000)
@test10 is the same as @test11.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@362710 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/fp-fast.ll

index c2b07ed..7abedfd 100644 (file)
@@ -104,14 +104,3 @@ define float @test10(float %a) {
   %t2 = fadd float %a, %t1
   ret float %t2
 }
-
-define float @test11(float %a) {
-; CHECK-LABEL: test11:
-; CHECK:       # %bb.0:
-; CHECK-NEXT:    vxorps %xmm0, %xmm0, %xmm0
-; CHECK-NEXT:    retq
-  %t1 = fsub float -0.0, %a
-  %t2 = fadd float %a, %t1
-  ret float %t2
-}
-