forked from OSchip/llvm-project
Do not use "else" when both branches return (NFC)
From: Mehdi Amini <mehdi.amini@apple.com> llvm-svn: 251398
This commit is contained in:
parent
dcd04d1b5b
commit
891c0973df
|
@ -219,9 +219,8 @@ SDValue VectorLegalizer::LegalizeOp(SDValue Op) {
|
|||
assert(Result.getValue(1).use_empty() &&
|
||||
"There are still live users of the old chain!");
|
||||
return LegalizeOp(Lowered);
|
||||
} else {
|
||||
return TranslateLegalizeResults(Op, Lowered);
|
||||
}
|
||||
return TranslateLegalizeResults(Op, Lowered);
|
||||
}
|
||||
case TargetLowering::Expand:
|
||||
Changed = true;
|
||||
|
|
Loading…
Reference in New Issue