From f4db3a51c7d806f7dcef5d9625e7cdf7f122dca9 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Tue, 21 Oct 2008 23:33:38 +0000 Subject: 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 --- tools/llvm-dis/llvm-dis.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/llvm-dis/llvm-dis.cpp') diff --git a/tools/llvm-dis/llvm-dis.cpp b/tools/llvm-dis/llvm-dis.cpp index 9802541e0f6..276b1e49534 100644 --- a/tools/llvm-dis/llvm-dis.cpp +++ b/tools/llvm-dis/llvm-dis.cpp @@ -118,7 +118,7 @@ int main(int argc, char **argv) { if (!DontPrint) { PassManager Passes; OStream L(*Out); - Passes.add(new PrintModulePass(&L)); + Passes.add(createPrintModulePass(&L)); Passes.run(*M.get()); } -- cgit v1.2.3