From 2172db04e7feeb7e0d841e0350824f1991db4625 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 13 May 2002 22:04:46 +0000 Subject: [PATCH] Trivial cleanups git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2617 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/ConstantProp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Transforms/Scalar/ConstantProp.cpp b/lib/Transforms/Scalar/ConstantProp.cpp index 013ddc0107c..720266ce187 100644 --- a/lib/Transforms/Scalar/ConstantProp.cpp +++ b/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(); -- 2.34.1