Eliminate the WriteTypeSymbolic function. Now that types know
authorChris Lattner <sabre@nondot.org>
Sat, 9 Jul 2011 18:03:13 +0000 (18:03 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 9 Jul 2011 18:03:13 +0000 (18:03 +0000)
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

include/llvm/Assembly/Writer.h
lib/VMCore/AsmWriter.cpp

index 78c27f03a21ec83c3e3d988f63db03ca1640ff22..8d8befd472d8a39c5f91dcc8a1e31d1ffbd52e42 100644 (file)
@@ -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,
index 18776dd5a0284bcdbea2e2abd791923695fc52cb..9278e58c2fc1d7d4ec4d68c588f70adf33ebd399 100644 (file)
@@ -290,11 +290,6 @@ void TypePrinting::printStructBody(StructType *STy, raw_ostream &OS) {
 
 
 
-void llvm::WriteTypeSymbolic(raw_ostream &OS, const Type *Ty, const Module *M) {
-  // FIXME: remove this function.
-  OS << *Ty;
-}
-
 //===----------------------------------------------------------------------===//
 // SlotTracker Class: Enumerate slot numbers for unnamed values
 //===----------------------------------------------------------------------===//