1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

[DAG] Remove unused variable. NFC.

This commit is contained in:
Benjamin Kramer 2020-12-01 16:29:02 +01:00
parent 072f29e65f
commit 465a434844

View File

@ -9758,7 +9758,7 @@ SDValue DAGCombiner::visitVSELECT(SDNode *N) {
}
if (Other && Other.getNumOperands() == 2 && Other.getOperand(0) == LHS) {
SDValue CondLHS = LHS, CondRHS = RHS;
SDValue CondRHS = RHS;
SDValue OpLHS = Other.getOperand(0), OpRHS = Other.getOperand(1);
// Look for a general sub with unsigned saturation first.