From 7ab51787ca5818153b5d789fe8b2ef0a66663147 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 13 May 2002 22:04:46 +0000 Subject: Trivial cleanups llvm-svn: 2617 --- llvm/lib/Transforms/Scalar/ConstantProp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/Transforms') diff --git a/llvm/lib/Transforms/Scalar/ConstantProp.cpp b/llvm/lib/Transforms/Scalar/ConstantProp.cpp index 013ddc0107c..720266ce187 100644 --- a/llvm/lib/Transforms/Scalar/ConstantProp.cpp +++ b/llvm/lib/Transforms/Scalar/ConstantProp.cpp @@ -17,16 +17,16 @@ #include "llvm/Instruction.h" #include "llvm/Pass.h" #include "llvm/Support/InstIterator.h" +#include "Support/StatisticReporter.h" #include -#include "Support/StatisticReporter.h" static Statistic<> NumInstKilled("constprop - Number of instructions killed"); namespace { struct ConstantPropogation : public FunctionPass { const char *getPassName() const { return "Simple Constant Propogation"; } - inline bool runOnFunction(Function *F); + bool runOnFunction(Function *F); virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.preservesCFG(); -- cgit v1.2.3