[llvm-commits] CVS: llvm/lib/Analysis/ScalarEvolution.cpp
John Criswell
criswell at cs.uiuc.edu
Thu Oct 27 08:55:14 PDT 2005
Changes in directory llvm/lib/Analysis:
ScalarEvolution.cpp updated: 1.43 -> 1.44
---
Log message:
Move some constant folding code shared by Analysis and Transform passes
into the LLVMAnalysis library.
This allows LLVMTranform and LLVMTransformUtils to be archives and linked
with LLVMAnalysis.a, which provides any missing definitions.
---
Diffs of the changes: (+1 -1)
ScalarEvolution.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Analysis/ScalarEvolution.cpp
diff -u llvm/lib/Analysis/ScalarEvolution.cpp:1.43 llvm/lib/Analysis/ScalarEvolution.cpp:1.44
--- llvm/lib/Analysis/ScalarEvolution.cpp:1.43 Wed Sep 28 17:30:58 2005
+++ llvm/lib/Analysis/ScalarEvolution.cpp Thu Oct 27 10:54:33 2005
@@ -64,10 +64,10 @@
#include "llvm/DerivedTypes.h"
#include "llvm/GlobalVariable.h"
#include "llvm/Instructions.h"
+#include "llvm/Analysis/ConstantFolding.h"
#include "llvm/Analysis/LoopInfo.h"
#include "llvm/Assembly/Writer.h"
#include "llvm/Transforms/Scalar.h"
-#include "llvm/Transforms/Utils/Local.h"
#include "llvm/Support/CFG.h"
#include "llvm/Support/ConstantRange.h"
#include "llvm/Support/InstIterator.h"
More information about the llvm-commits
mailing list