diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-14 23:32:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-14 23:32:02 +0000 |
commit | e34e9a29dc424baed8aed200c6a940f2c12c2a2f (patch) | |
tree | af7ca6cbdb1b31d620ceeb23e8fd2e5c1b0eea20 /lib/Transforms/Scalar/SCCP.cpp | |
parent | 024a126303aef754e1099c822428c44ee6e2bcba (diff) |
fix long lines
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36031 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/SCCP.cpp')
-rw-r--r-- | lib/Transforms/Scalar/SCCP.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Transforms/Scalar/SCCP.cpp b/lib/Transforms/Scalar/SCCP.cpp index cdcdcc664e..16e7a8e269 100644 --- a/lib/Transforms/Scalar/SCCP.cpp +++ b/lib/Transforms/Scalar/SCCP.cpp @@ -925,9 +925,9 @@ void SCCPSolver::visitInsertElementInst(InsertElementInst &I) { IdxState.getConstant())); else if (ValState.isUndefined() && EltState.isConstant() && IdxState.isConstant()) - markConstant(&I, ConstantExpr::getInsertElement(UndefValue::get(I.getType()), - EltState.getConstant(), - IdxState.getConstant())); + markConstant(&I,ConstantExpr::getInsertElement(UndefValue::get(I.getType()), + EltState.getConstant(), + IdxState.getConstant())); #endif } @@ -1365,7 +1365,7 @@ bool SCCP::runOnFunction(Function &F) { Solver.MarkBlockExecutable(F.begin()); // Mark all arguments to the function as being overdefined. - for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end(); AI != E; ++AI) + for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end(); AI != E;++AI) Solver.markOverdefined(AI); // Solve for constants. |