1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Allow specifying a module for context instead of a slot calculator directly

llvm-svn: 2851
This commit is contained in:
Chris Lattner 2002-07-10 16:48:14 +00:00
parent 0f86d605e1
commit 23cfaec9ce

View File

@ -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