[LegalizeTypes] Fix bad indentation. NFC

llvm-svn: 342850
This commit is contained in:
Craig Topper 2018-09-23 21:17:55 +00:00
parent 436a40128c
commit bec5967176
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ void DAGTypeLegalizer::IntegerToVector(SDValue Op, unsigned NumElements,
NumElements >>= 1;
SplitInteger(Op, Parts[0], Parts[1]);
if (DAG.getDataLayout().isBigEndian())
std::swap(Parts[0], Parts[1]);
std::swap(Parts[0], Parts[1]);
IntegerToVector(Parts[0], NumElements, Ops, EltVT);
IntegerToVector(Parts[1], NumElements, Ops, EltVT);
} else {