diff options
Diffstat (limited to 'lib/Analysis/PostDominators.cpp')
-rw-r--r-- | lib/Analysis/PostDominators.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Analysis/PostDominators.cpp b/lib/Analysis/PostDominators.cpp index 69522e8a39..69d6b47bbe 100644 --- a/lib/Analysis/PostDominators.cpp +++ b/lib/Analysis/PostDominators.cpp @@ -41,9 +41,8 @@ PostDominatorTree::~PostDominatorTree() { delete DT; } -void PostDominatorTree::print(std::ostream &OS, const Module *) const { - raw_os_ostream OSS(OS); - DT->print(OSS); +void PostDominatorTree::print(raw_ostream &OS, const Module *) const { + DT->print(OS); } |