diff options
Diffstat (limited to 'llvm/tools/opt/GraphPrinters.cpp')
-rw-r--r-- | llvm/tools/opt/GraphPrinters.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/opt/GraphPrinters.cpp b/llvm/tools/opt/GraphPrinters.cpp index 640edfee41d..a8bb12f3e01 100644 --- a/llvm/tools/opt/GraphPrinters.cpp +++ b/llvm/tools/opt/GraphPrinters.cpp @@ -35,7 +35,7 @@ namespace { } bool runOnFunction(Function &F) override { - getAnalysis<DominatorTreeWrapperPass>().dump(); + getAnalysis<DominatorTreeWrapperPass>().print(dbgs()); return false; } }; |