Trivial cleanups
authorChris Lattner <sabre@nondot.org>
Mon, 13 May 2002 22:04:46 +0000 (22:04 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 13 May 2002 22:04:46 +0000 (22:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2617 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/ConstantProp.cpp

index 013ddc0107c7bcc96f072f0328bf1ba521062bc5..720266ce1874997793708a7eb64fe6c3da30fa9c 100644 (file)
 #include "llvm/Instruction.h"
 #include "llvm/Pass.h"
 #include "llvm/Support/InstIterator.h"
+#include "Support/StatisticReporter.h"
 #include <set>
 
-#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();