diff options
author | Sanjay Patel <spatel@rotateright.com> | 2017-04-09 21:45:52 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2017-04-09 21:45:52 +0000 |
commit | 72fbb7868a4c96dfb70622b904be1d284c7f1391 (patch) | |
tree | 694803049fdfb2699e0249586a37101bf8a9f47f /llvm/test/Transforms/InstCombine/fcmp.ll | |
parent | 612d5a9c5cc834235ca445c7ac3eb15e51354327 (diff) | |
download | bcm5719-llvm-72fbb7868a4c96dfb70622b904be1d284c7f1391.tar.gz bcm5719-llvm-72fbb7868a4c96dfb70622b904be1d284c7f1391.zip |
[InstCombine] remove duplicate test; NFC
I moved this test to 'not.ll' in r299824 but accidentally added a copy here.
llvm-svn: 299828
Diffstat (limited to 'llvm/test/Transforms/InstCombine/fcmp.ll')
-rw-r--r-- | llvm/test/Transforms/InstCombine/fcmp.ll | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/llvm/test/Transforms/InstCombine/fcmp.ll b/llvm/test/Transforms/InstCombine/fcmp.ll index 47b5ad07572..40f7bf9b64f 100644 --- a/llvm/test/Transforms/InstCombine/fcmp.ll +++ b/llvm/test/Transforms/InstCombine/fcmp.ll @@ -334,15 +334,3 @@ define i1 @test19_undef_ordered() nounwind { ret i1 %cmp } -; PR1570 - -define i1 @invert_fcmp(float %X, float %Y) { -; CHECK-LABEL: @invert_fcmp( -; CHECK-NEXT: [[TOBOOLNOT5:%.*]] = fcmp uge float %X, %Y -; CHECK-NEXT: ret i1 [[TOBOOLNOT5]] -; - %tmp3 = fcmp olt float %X, %Y - %toBoolnot5 = xor i1 %tmp3, true - ret i1 %toBoolnot5 -} - |