diff options
| author | Chris Lattner <sabre@nondot.org> | 2002-05-13 22:04:46 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2002-05-13 22:04:46 +0000 |
| commit | 7ab51787ca5818153b5d789fe8b2ef0a66663147 (patch) | |
| tree | 4ccec96a19779f18a0f529904765e33b0269b9d4 /llvm/lib/Transforms | |
| parent | da6743e60cea36654d1600400c5a1c5533647ff4 (diff) | |
| download | bcm5719-llvm-7ab51787ca5818153b5d789fe8b2ef0a66663147.tar.gz bcm5719-llvm-7ab51787ca5818153b5d789fe8b2ef0a66663147.zip | |
Trivial cleanups
llvm-svn: 2617
Diffstat (limited to 'llvm/lib/Transforms')
| -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(); |

