[llvm-commits] CVS: llvm/lib/Analysis/ScalarEvolutionExpander.cpp
Reid Spencer
reid at x10sys.com
Mon Dec 4 09:04:59 PST 2006
Changes in directory llvm/lib/Analysis:
ScalarEvolutionExpander.cpp updated: 1.6 -> 1.7
---
Log message:
Fix 80 cols violation
---
Diffs of the changes: (+3 -2)
ScalarEvolutionExpander.cpp | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
Index: llvm/lib/Analysis/ScalarEvolutionExpander.cpp
diff -u llvm/lib/Analysis/ScalarEvolutionExpander.cpp:1.6 llvm/lib/Analysis/ScalarEvolutionExpander.cpp:1.7
--- llvm/lib/Analysis/ScalarEvolutionExpander.cpp:1.6 Tue Nov 28 18:19:40 2006
+++ llvm/lib/Analysis/ScalarEvolutionExpander.cpp Mon Dec 4 11:04:44 2006
@@ -15,6 +15,7 @@
#include "llvm/Analysis/LoopInfo.h"
#include "llvm/Analysis/ScalarEvolutionExpander.h"
+
using namespace llvm;
/// InsertCastOfTo - Insert a cast of V to the specified type, doing what
@@ -38,8 +39,8 @@
return CI;
}
}
- return CastInst::createInferredCast(V, Ty, V->getName(),
- A->getParent()->getEntryBlock().begin());
+ return CastInst::createInferredCast(
+ V, Ty, V->getName(), A->getParent()->getEntryBlock().begin());
}
Instruction *I = cast<Instruction>(V);
More information about the llvm-commits
mailing list