diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-10-21 23:33:38 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-10-21 23:33:38 +0000 |
commit | f4db3a51c7d806f7dcef5d9625e7cdf7f122dca9 (patch) | |
tree | 81dbaa0fce182c01c6fa0c916f24dc0773c3e34b /tools/opt | |
parent | 040225fcb7e16ad7485dec9ccd23f178297a8a61 (diff) | |
download | external_llvm-f4db3a51c7d806f7dcef5d9625e7cdf7f122dca9.zip external_llvm-f4db3a51c7d806f7dcef5d9625e7cdf7f122dca9.tar.gz external_llvm-f4db3a51c7d806f7dcef5d9625e7cdf7f122dca9.tar.bz2 |
Privatize PrintModulePass and PrintFunctionPass and add
createPrintModulePass and createPrintFunctionPass.
- So clients who compile w/o RTTI can use them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57933 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/opt')
-rw-r--r-- | tools/opt/opt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index ea6ed33..358cbda 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -543,7 +543,7 @@ int main(int argc, char **argv) { } if (PrintEachXForm) - Passes.add(new PrintModulePass(&cerr)); + Passes.add(createPrintModulePass(&cerr)); } // If -std-compile-opts was specified at the end of the pass list, add them. |