summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-10 16:48:14 +0000
committerChris Lattner <sabre@nondot.org>2002-07-10 16:48:14 +0000
commit46f824f21df572bb398bbb8e0514555195833403 (patch)
tree18ea4a311be9ff4fcb5a7b1535589a6134156b44 /include/llvm
parent1373d87f1692524d00cc113869e45da6b63a0e44 (diff)
downloadllvm-46f824f21df572bb398bbb8e0514555195833403.tar.gz
llvm-46f824f21df572bb398bbb8e0514555195833403.tar.bz2
llvm-46f824f21df572bb398bbb8e0514555195833403.tar.xz
Allow specifying a module for context instead of a slot calculator directly
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2851 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Assembly/Writer.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h
index 07671a18a5..f87dc12ad0 100644
--- a/include/llvm/Assembly/Writer.h
+++ b/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