summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms
diff options
context:
space:
mode:
authorMatthijs Kooijman <matthijs@stdin.nl>2008-06-16 12:57:37 +0000
committerMatthijs Kooijman <matthijs@stdin.nl>2008-06-16 12:57:37 +0000
commit5cb387735dd6d81913a1e61be05ca7ed5e6218e0 (patch)
treede772cd221675a5268ea175e96991cba05c05008 /llvm/lib/Transforms
parente92e18be5a947becfa09e25f87ae05bf474132a7 (diff)
downloadbcm5719-llvm-5cb387735dd6d81913a1e61be05ca7ed5e6218e0.tar.gz
bcm5719-llvm-5cb387735dd6d81913a1e61be05ca7ed5e6218e0.zip
80 column fixes.
llvm-svn: 52316
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r--llvm/lib/Transforms/Scalar/InstructionCombining.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
index 4f6783b8858..42cfd8a8f2b 100644
--- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -10520,7 +10520,8 @@ Instruction *InstCombiner::visitSwitchInst(SwitchInst &SI) {
Instruction *InstCombiner::visitExtractValueInst(ExtractValueInst &EV) {
// See if we are trying to extract a known value. If so, use that instead.
- if (Value *Elt = FindInsertedValue(EV.getOperand(0), EV.idx_begin(), EV.idx_end(), EV))
+ if (Value *Elt = FindInsertedValue(EV.getOperand(0), EV.idx_begin(),
+ EV.idx_end(), EV))
return ReplaceInstUsesWith(EV, Elt);
// No changes
OpenPOWER on IntegriCloud