diff options
Diffstat (limited to 'llvm/lib/Transforms/Scalar')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/ConstantProp.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
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 <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();  | 

