diff options
author | Chris Lattner <sabre@nondot.org> | 2003-11-13 05:05:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-11-13 05:05:41 +0000 |
commit | 79390d48d0a7c4c5d4f6d8efd25b3c44535fff08 (patch) | |
tree | 13ca0f11aaeda7782998541a8a1e7495a0b3aa7a /lib/Analysis/DataStructure/Printer.cpp | |
parent | 21fc51daa53ae31ab5590797c383ca1322e8797c (diff) |
Implement the CompleteBU pass
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9964 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/Printer.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/Printer.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Analysis/DataStructure/Printer.cpp b/lib/Analysis/DataStructure/Printer.cpp index ae528aeb34..7e73bb0aee 100644 --- a/lib/Analysis/DataStructure/Printer.cpp +++ b/lib/Analysis/DataStructure/Printer.cpp @@ -283,3 +283,8 @@ void TDDataStructures::print(std::ostream &O, const Module *M) const { printCollection(*this, O, M, "td."); } +void CompleteBUDataStructures::print(std::ostream &O, const Module *M) const { + printCollection(*this, O, M, "cbu."); +} + + |