summaryrefslogtreecommitdiff
path: root/include/llvm/Assembly/Writer.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-07-09 18:03:13 +0000
committerChris Lattner <sabre@nondot.org>2011-07-09 18:03:13 +0000
commit145ab1071123c711242ac665bdcf80004f504d9b (patch)
tree7804a4bcfac2cb9bace5a853cec59ea4a97e29cf /include/llvm/Assembly/Writer.h
parent368381e9ab590369213bbad690d2ff6f21b2144f (diff)
downloadllvm-145ab1071123c711242ac665bdcf80004f504d9b.tar.gz
llvm-145ab1071123c711242ac665bdcf80004f504d9b.tar.bz2
llvm-145ab1071123c711242ac665bdcf80004f504d9b.tar.xz
Eliminate the WriteTypeSymbolic function. Now that types know
their names, we don't need a module around to print them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134835 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly/Writer.h')
-rw-r--r--include/llvm/Assembly/Writer.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h
index 78c27f03a2..8d8befd472 100644
--- a/include/llvm/Assembly/Writer.h
+++ b/include/llvm/Assembly/Writer.h
@@ -24,12 +24,6 @@ class Module;
class Value;
class raw_ostream;
-// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
-// type, if there is an entry in the Module's symbol table for the specified
-// type or one of its component types.
-//
-void WriteTypeSymbolic(raw_ostream &, const Type *, const Module *M);
-
// WriteAsOperand - Write the name of the specified value out to the specified
// ostream. This can be useful when you just want to print int %reg126, not the
// whole instruction that generated it. If you specify a Module for context,