[llvm] r362710 - [NFC][CodeGen] Remove duplicate test in fp-fast.ll

Cameron McInally via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 6 07:52:16 PDT 2019


Author: mcinally
Date: Thu Jun  6 07:52:16 2019
New Revision: 362710

URL: http://llvm.org/viewvc/llvm-project?rev=362710&view=rev
Log:
[NFC][CodeGen] Remove duplicate test in fp-fast.ll

@test10 is the same as @test11.

Modified:
    llvm/trunk/test/CodeGen/X86/fp-fast.ll

Modified: llvm/trunk/test/CodeGen/X86/fp-fast.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/fp-fast.ll?rev=362710&r1=362709&r2=362710&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/fp-fast.ll (original)
+++ llvm/trunk/test/CodeGen/X86/fp-fast.ll Thu Jun  6 07:52:16 2019
@@ -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
-}
-




More information about the llvm-commits mailing list