summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2006-10-19 20:59:13 +0000
committerDevang Patel <dpatel@apple.com>2006-10-19 20:59:13 +0000
commit5d6df959e3cd897398cba5c25f9cb1d4f319f001 (patch)
treedb534dd5ec5f8d9e243425b103f6c0501bd3ba6e
parent88afd00d1d2aa1533d990f54431cff1ed9296f47 (diff)
downloadbcm5719-llvm-5d6df959e3cd897398cba5c25f9cb1d4f319f001.tar.gz
bcm5719-llvm-5d6df959e3cd897398cba5c25f9cb1d4f319f001.zip
It is OK to remove extra cast if operation is EQ/NE even though source
and destination sign may not match but other conditions are met. llvm-svn: 31056
-rw-r--r--llvm/lib/Transforms/Scalar/InstructionCombining.cpp5
-rw-r--r--llvm/test/Regression/Transforms/InstCombine/2006-10-19-SignedToUnsignedCastAndConst-2.ll9
2 files changed, 12 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
index 7e75dcab1df..97b7cebbb68 100644
--- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -4795,8 +4795,9 @@ Instruction *InstCombiner::visitSetCondInstWithCastAndCast(SetCondInst &SCI) {
// %B = setgt short %X, 1330
//
// because %A may have negative value.
- // However, it is OK if SrcTy is bool. See cast-set.ll testcase.
- if (isSignSrc == isSignDest || SrcTy == Type::BoolTy)
+ // However, it is OK if SrcTy is bool (See cast-set.ll testcase)
+ // OR operation is EQ/NE.
+ if (isSignSrc == isSignDest || SrcTy == Type::BoolTy || SCI.isEquality())
RHSCIOp = Res;
else
return 0;
diff --git a/llvm/test/Regression/Transforms/InstCombine/2006-10-19-SignedToUnsignedCastAndConst-2.ll b/llvm/test/Regression/Transforms/InstCombine/2006-10-19-SignedToUnsignedCastAndConst-2.ll
new file mode 100644
index 00000000000..c10e62db8e8
--- /dev/null
+++ b/llvm/test/Regression/Transforms/InstCombine/2006-10-19-SignedToUnsignedCastAndConst-2.ll
@@ -0,0 +1,9 @@
+; The optimizer should be able to remove cast operation here.
+; RUN: llvm-as %s -o - | opt -instcombine | llvm-dis | not grep 'cast.*int'
+
+bool %eq_signed_to_small_unsigned(sbyte %SB) {
+ %Y = cast sbyte %SB to uint ; <uint> [#uses=1]
+ %C = seteq uint %Y, 17 ; <bool> [#uses=1]
+ ret bool %C
+ }
+
OpenPOWER on IntegriCloud