diff options
| author | Matthijs Kooijman <matthijs@stdin.nl> | 2008-06-16 12:57:37 +0000 |
|---|---|---|
| committer | Matthijs Kooijman <matthijs@stdin.nl> | 2008-06-16 12:57:37 +0000 |
| commit | 5cb387735dd6d81913a1e61be05ca7ed5e6218e0 (patch) | |
| tree | de772cd221675a5268ea175e96991cba05c05008 /llvm/lib/Transforms | |
| parent | e92e18be5a947becfa09e25f87ae05bf474132a7 (diff) | |
| download | bcm5719-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.cpp | 3 |
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 |

