Tabs to spaces. No functionality change.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181082 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Lewycky
2013-05-04 01:08:15 +00:00
parent 1aef163a68
commit cd4e5e9b34

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);
} }
} }