diff options
author | Sanjay Patel <spatel@rotateright.com> | 2018-07-15 16:13:58 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2018-07-15 16:13:58 +0000 |
commit | fae8ed0104b32be1726e973932f172e350c67322 (patch) | |
tree | 3773df07008b154a8355257bbb6ce39766b5ca2b /llvm/test | |
parent | 810f51ec1bde01b0b52257b1fd76b95af0163a97 (diff) | |
download | bcm5719-llvm-fae8ed0104b32be1726e973932f172e350c67322.tar.gz bcm5719-llvm-fae8ed0104b32be1726e973932f172e350c67322.zip |
[InstSimplify] add fixme comment for PR37776; NFC
llvm-svn: 337129
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/Transforms/InstSimplify/floating-point-compare.ll | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/test/Transforms/InstSimplify/floating-point-compare.ll b/llvm/test/Transforms/InstSimplify/floating-point-compare.ll index 8e7523eb065..b1444bb5a1e 100644 --- a/llvm/test/Transforms/InstSimplify/floating-point-compare.ll +++ b/llvm/test/Transforms/InstSimplify/floating-point-compare.ll @@ -266,6 +266,10 @@ define i1 @orderedLessZeroMinNum(float, float) { ret i1 %uge } +; FIXME: This is wrong. +; PR37776: https://bugs.llvm.org/show_bug.cgi?id=37776 +; exp() may return nan, leaving %1 as the unknown result, so we can't simplify. + define i1 @orderedLessZeroMaxNum(float, float) { ; CHECK-LABEL: @orderedLessZeroMaxNum( ; CHECK-NEXT: ret i1 true |