Tabs to spaces. No functionality change.

llvm-svn: 181082
This commit is contained in:
Nick Lewycky 2013-05-04 01:08:15 +00:00
parent 6738e430a9
commit 881e9d62e2
1 changed files with 3 additions and 3 deletions

View File

@ -222,9 +222,9 @@ Instruction *InstCombiner::visitExtractElementInst(ExtractElementInst &EI) {
// If there's a vector PHI feeding a scalar use through this extractelement // If there's a vector PHI feeding a scalar use through this extractelement
// instruction, try to scalarize the PHI. // instruction, try to scalarize the PHI.
if (PHINode *PN = dyn_cast<PHINode>(EI.getOperand(0))) { if (PHINode *PN = dyn_cast<PHINode>(EI.getOperand(0))) {
Instruction *scalarPHI = scalarizePHI(EI, PN); Instruction *scalarPHI = scalarizePHI(EI, PN);
if (scalarPHI) if (scalarPHI)
return (scalarPHI); return (scalarPHI);
} }
} }