diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-10 16:48:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-10 16:48:14 +0000 |
commit | fd5e6e0fb837588f63b400f160f3c27902a12327 (patch) | |
tree | 0a06b0b2c7be8f4343e92a4b974a40514ac005a1 /llvm | |
parent | 54ef5ab8a004e51c77e03d789858db29dbfda441 (diff) | |
download | bcm5719-llvm-fd5e6e0fb837588f63b400f160f3c27902a12327.tar.gz bcm5719-llvm-fd5e6e0fb837588f63b400f160f3c27902a12327.zip |
Allow specifying a module for context instead of a slot calculator directly
llvm-svn: 2851
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/Assembly/Writer.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/include/llvm/Assembly/Writer.h b/llvm/include/llvm/Assembly/Writer.h index 07671a18a50..f87dc12ad0f 100644 --- a/llvm/include/llvm/Assembly/Writer.h +++ b/llvm/include/llvm/Assembly/Writer.h @@ -20,7 +20,6 @@ class Type; class Module; class Value; -class SlotCalculator; // WriteTypeSymbolic - This attempts to write the specified type as a symbolic @@ -32,9 +31,11 @@ std::ostream &WriteTypeSymbolic(std::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. +// whole instruction that generated it. If you specify a Module for context, +// then even constants get pretty printed (for example the type of a null +// pointer is printed symbolically). // std::ostream &WriteAsOperand(std::ostream &, const Value *, bool PrintTy = true, - bool PrintName = true, SlotCalculator *Table = 0); + bool PrintName = true, const Module *Context = 0); #endif |