[DAG] Remover getOperand() call. NFCI.

This commit is contained in:
Simon Pilgrim 2020-09-16 11:02:09 +01:00
parent a909a84ef2
commit 3f682611ab
1 changed files with 1 additions and 1 deletions

View File

@ -10213,7 +10213,7 @@ SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
SDValue N00 = N0.getOperand(0);
SDValue N01 = N0.getOperand(1);
ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get();
EVT N00VT = N0.getOperand(0).getValueType();
EVT N00VT = N00.getValueType();
// sext(setcc) -> sext_in_reg(vsetcc) for vectors.
// Only do this before legalize for now.