summaryrefslogtreecommitdiff
path: root/include/llvm/Assembly
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-07-03 05:35:52 +0000
committerChris Lattner <sabre@nondot.org>2001-07-03 05:35:52 +0000
commitd1ee90f1a5fd695e5d6f0b22319d564d55d6cdcb (patch)
treed7ae83894e150414a5d50b88820703a4883cc9d2 /include/llvm/Assembly
parent953932d779b4615d481f711642c9969ef3fcd4b2 (diff)
downloadllvm-d1ee90f1a5fd695e5d6f0b22319d564d55d6cdcb.tar.gz
llvm-d1ee90f1a5fd695e5d6f0b22319d564d55d6cdcb.tar.bz2
llvm-d1ee90f1a5fd695e5d6f0b22319d564d55d6cdcb.tar.xz
Remove code for printing out Analysis data structures. It got moved
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly')
-rw-r--r--include/llvm/Assembly/Writer.h40
1 files changed, 2 insertions, 38 deletions
diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h
index 9a54bdaf77..68a5ed2812 100644
--- a/include/llvm/Assembly/Writer.h
+++ b/include/llvm/Assembly/Writer.h
@@ -1,6 +1,6 @@
-//===-- llvm/assembly/Writer.h - Printer for VM assembly files ---*- C++ -*--=//
+//===-- llvm/Assembly/Writer.h - Printer for VM assembly files ---*- C++ -*--=//
//
-// This functionality is implemented by the lib/AssemblyWriter library.
+// This functionality is implemented by the lib/Assembly/Writer library.
// This library is used to print VM assembly language files to an iostream. It
// can print VM code at a variety of granularities, ranging from a whole class
// down to an individual instruction. This makes it useful for debugging.
@@ -88,40 +88,4 @@ inline ostream &operator<<(ostream &o, const Value *I) {
return o;
}
-
-// This library also provides support for printing out Interval's.
-namespace cfg {
- class Interval;
- void WriteToOutput(const Interval *I, ostream &o);
- inline ostream &operator <<(ostream &o, const Interval *I) {
- WriteToOutput(I, o); return o;
- }
-
- // Stuff for printing out Dominator data structures...
- class DominatorSet;
- class ImmediateDominators;
- class DominatorTree;
- class DominanceFrontier;
-
- void WriteToOutput(const DominatorSet &, ostream &o);
- inline ostream &operator <<(ostream &o, const DominatorSet &DS) {
- WriteToOutput(DS, o); return o;
- }
-
- void WriteToOutput(const ImmediateDominators &, ostream &o);
- inline ostream &operator <<(ostream &o, const ImmediateDominators &ID) {
- WriteToOutput(ID, o); return o;
- }
-
- void WriteToOutput(const DominatorTree &, ostream &o);
- inline ostream &operator <<(ostream &o, const DominatorTree &DT) {
- WriteToOutput(DT, o); return o;
- }
-
- void WriteToOutput(const DominanceFrontier &, ostream &o);
- inline ostream &operator <<(ostream &o, const DominanceFrontier &DF) {
- WriteToOutput(DF, o); return o;
- }
-}
-
#endif