summaryrefslogtreecommitdiff
path: root/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2013-05-04 01:08:15 +0000
committerNick Lewycky <nicholas@mxc.ca>2013-05-04 01:08:15 +0000
commitcd4e5e9b34c1f155cf4495431f7cc6e10e2d390b (patch)
treeb6edc6eaca4bd26f439255086735403e644ace2e /lib/Transforms/InstCombine/InstCombineVectorOps.cpp
parent1aef163a6815e7bff675f83ddec8b063d6082e86 (diff)
downloadllvm-cd4e5e9b34c1f155cf4495431f7cc6e10e2d390b.tar.gz
llvm-cd4e5e9b34c1f155cf4495431f7cc6e10e2d390b.tar.bz2
llvm-cd4e5e9b34c1f155cf4495431f7cc6e10e2d390b.tar.xz
Tabs to spaces. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181082 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/InstCombine/InstCombineVectorOps.cpp')
-rw-r--r--lib/Transforms/InstCombine/InstCombineVectorOps.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/InstCombine/InstCombineVectorOps.cpp b/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
index de8a3acdbd..4301ddb5aa 100644
--- a/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
+++ b/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
@@ -222,9 +222,9 @@ Instruction *InstCombiner::visitExtractElementInst(ExtractElementInst &EI) {
// If there's a vector PHI feeding a scalar use through this extractelement
// instruction, try to scalarize the PHI.
if (PHINode *PN = dyn_cast<PHINode>(EI.getOperand(0))) {
- Instruction *scalarPHI = scalarizePHI(EI, PN);
- if (scalarPHI)
- return (scalarPHI);
+ Instruction *scalarPHI = scalarizePHI(EI, PN);
+ if (scalarPHI)
+ return (scalarPHI);
}
}