summaryrefslogtreecommitdiff
path: root/lib/Target/README.txt
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2008-05-31 19:01:33 +0000
committerNick Lewycky <nicholas@mxc.ca>2008-05-31 19:01:33 +0000
commit517e1f5cd752e06e1587804f4e1d64ef52a21a08 (patch)
treef5249b66c853a8e308f780f383204456be66ad7f /lib/Target/README.txt
parent4914db09a5659bbab94a1dca1df48ed728398790 (diff)
downloadllvm-517e1f5cd752e06e1587804f4e1d64ef52a21a08.tar.gz
llvm-517e1f5cd752e06e1587804f4e1d64ef52a21a08.tar.bz2
llvm-517e1f5cd752e06e1587804f4e1d64ef52a21a08.tar.xz
Peer through sext/zext when looking for not(cmp).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51819 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/README.txt')
-rw-r--r--lib/Target/README.txt26
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/Target/README.txt b/lib/Target/README.txt
index c9f11b935c..23572cd6bc 100644
--- a/lib/Target/README.txt
+++ b/lib/Target/README.txt
@@ -775,32 +775,6 @@ be done safely if "b" isn't modified between the strlen and memcpy of course.
//===---------------------------------------------------------------------===//
-define i32 @test2(float %X, float %Y) {
-entry:
- %tmp3 = fcmp uno float %X, %Y ; <i1> [#uses=1]
- %tmp34 = zext i1 %tmp3 to i8 ; <i8> [#uses=1]
- %tmp = xor i8 %tmp34, 1 ; <i8> [#uses=1]
- %toBoolnot5 = zext i8 %tmp to i32 ; <i32> [#uses=1]
- ret i32 %toBoolnot5
-}
-
-could be optimized further. Instcombine should use its bitwise analysis to
-collapse the zext/xor/zext structure to an xor/zext and then remove the
-xor by reversing the fcmp.
-
-Desired output:
-
-define i32 @test2(float %X, float %Y) {
-entry:
- %tmp3 = fcmp ord float %X, %Y ; <i1> [#uses=1]
- %tmp34 = zext i1 %tmp3 to i32 ; <i32> [#uses=1]
- ret i32 %tmp34
-}
-
-To fix this, we need to make CanEvaluateInDifferentType smarter.
-
-//===---------------------------------------------------------------------===//
-
We should be able to evaluate this loop:
int test(int x_offs) {