mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
Remove a couple redundant checks.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142959 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
847915d63a
commit
9312613137
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user