Remove a couple redundant checks.
authorEli Friedman <eli.friedman@gmail.com>
Tue, 25 Oct 2011 20:34:22 +0000 (20:34 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Tue, 25 Oct 2011 20:34:22 +0000 (20:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142959 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/DAGCombiner.cpp

index 10daa31b6a3a7d00a1c6ed3dd4dfbca07cce9696..91ce2a19699cf4f8a93f3390d656a2616c20310b 100644 (file)
@@ -7528,8 +7528,6 @@ SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
   // Check to see if we can perform the "gzip trick", transforming
   // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
   if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
-      N0.getValueType().isInteger() &&
-      N2.getValueType().isInteger() &&
       (N1C->isNullValue() ||                         // (a < 0) ? b : 0
        (N1C->getAPIntValue() == 1 && N0 == N2))) {   // (a < 1) ? a : 0
     EVT XType = N0.getValueType();