diff options
author | Cameron McInally <cameron.mcinally@nyu.edu> | 2019-06-06 14:52:16 +0000 |
---|---|---|
committer | Cameron McInally <cameron.mcinally@nyu.edu> | 2019-06-06 14:52:16 +0000 |
commit | 0924f4485921f2e833ffb4f7f6fd203608044fce (patch) | |
tree | 46eb678f2b43018dfeda2cfa54859c39bc5bef63 | |
parent | 47feb771e13924abd48b0913c6cd1a90f4007835 (diff) | |
download | bcm5719-llvm-0924f4485921f2e833ffb4f7f6fd203608044fce.tar.gz bcm5719-llvm-0924f4485921f2e833ffb4f7f6fd203608044fce.zip |
[NFC][CodeGen] Remove duplicate test in fp-fast.ll
@test10 is the same as @test11.
llvm-svn: 362710
-rw-r--r-- | llvm/test/CodeGen/X86/fp-fast.ll | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/llvm/test/CodeGen/X86/fp-fast.ll b/llvm/test/CodeGen/X86/fp-fast.ll index c2b07ed1023..7abedfd2d17 100644 --- a/llvm/test/CodeGen/X86/fp-fast.ll +++ b/llvm/test/CodeGen/X86/fp-fast.ll @@ -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 -} - |