diff options
author | Evan Cheng <evan.cheng@apple.com> | 2012-12-21 01:48:14 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2012-12-21 01:48:14 +0000 |
commit | a16422f11b030097182143581aaaa5451175b687 (patch) | |
tree | 79b82dfe3c919781353bf99577fbe387f6756a2d | |
parent | f5637c399711e37287e01f9d9ca9ce7cd2f3d14f (diff) |
Every pass deserves a name, even codegenprep.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170831 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/CodeGenPrepare.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Transforms/Scalar/CodeGenPrepare.cpp b/lib/Transforms/Scalar/CodeGenPrepare.cpp index c490705f3b..b8900ac3d7 100644 --- a/lib/Transforms/Scalar/CodeGenPrepare.cpp +++ b/lib/Transforms/Scalar/CodeGenPrepare.cpp @@ -106,6 +106,8 @@ namespace { } bool runOnFunction(Function &F); + const char *getPassName() const { return "CodeGen Prepare"; } + virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.addPreserved<DominatorTree>(); AU.addPreserved<ProfileInfo>(); |