diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-28 00:15:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-28 00:15:57 +0000 |
commit | a298d27808ecb8ffb574d6e50f56601db2ec5fda (patch) | |
tree | d69327afaa224b21529a2cc2eb15d1e80588ecb6 /lib/Analysis/Writer.cpp | |
parent | 483e14ee0412a98db1fb0121528d8d621ae3dfdb (diff) |
Change the Dominator info and LoopInfo classes to keep track of BasicBlock's, not
const BasicBlocks
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2337 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/Writer.cpp')
-rw-r--r-- | lib/Analysis/Writer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/Writer.cpp b/lib/Analysis/Writer.cpp index b4d5375ebd..05bd7705c2 100644 --- a/lib/Analysis/Writer.cpp +++ b/lib/Analysis/Writer.cpp @@ -50,8 +50,8 @@ void cfg::WriteToOutput(const IntervalPartition &IP, ostream &o) { // Dominator Printing Routines //===----------------------------------------------------------------------===// -ostream &operator<<(ostream &o, const set<const BasicBlock*> &BBs) { - copy(BBs.begin(),BBs.end(), std::ostream_iterator<const BasicBlock*>(o,"\n")); +ostream &operator<<(ostream &o, const set<BasicBlock*> &BBs) { + copy(BBs.begin(),BBs.end(), std::ostream_iterator<BasicBlock*>(o, "\n")); return o; } |