Skip to content

Commit

Permalink
Eliminate the WriteTypeSymbolic function. Now that types know
Browse files Browse the repository at this point in the history
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
  • Loading branch information
lattner committed Jul 9, 2011
1 parent 368381e commit 145ab10
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
6 changes: 0 additions & 6 deletions include/llvm/Assembly/Writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
5 changes: 0 additions & 5 deletions lib/VMCore/AsmWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
//===----------------------------------------------------------------------===//
Expand Down

0 comments on commit 145ab10

Please sign in to comment.