summaryrefslogtreecommitdiffstats
path: root/include/llvm/Assembly
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-07 22:30:17 +0000
committerChris Lattner <sabre@nondot.org>2002-04-07 22:30:17 +0000
commit156ce94021e6805b8cda51869f6b0ccd2ad27365 (patch)
tree125a8b47237a2ffb6795920a873241c6f9ef4bd3 /include/llvm/Assembly
parent2fbfdcffd3e0cf41422aaa6c526c37cb02b81341 (diff)
downloadexternal_llvm-156ce94021e6805b8cda51869f6b0ccd2ad27365.zip
external_llvm-156ce94021e6805b8cda51869f6b0ccd2ad27365.tar.gz
external_llvm-156ce94021e6805b8cda51869f6b0ccd2ad27365.tar.bz2
VCG output support removed because it was broken and will never be used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2146 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly')
-rw-r--r--include/llvm/Assembly/Writer.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h
index a148c0b..4c6c9fd 100644
--- a/include/llvm/Assembly/Writer.h
+++ b/include/llvm/Assembly/Writer.h
@@ -47,17 +47,6 @@ std::ostream &WriteAsOperand(std::ostream &, const Value *, bool PrintTy = true,
bool PrintName = true, SlotCalculator *Table = 0);
-// WriteToVCG - Dump the specified structure to a VCG file. If method is
-// dumped, then the file named is created. If a module is to be written, a
-// family of files with a common base name is created, with a method name
-// suffix.
-//
-void WriteToVCG(const Module *Module, const std::string &Filename);
-void WriteToVCG(const Function *Func, const std::string &Filename);
-
-
-
-
// Define operator<< to work on the various classes that we can send to an
// ostream...
//