mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2852 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
46f824f21d
commit
607dc6880e
@ -375,17 +375,17 @@ static void WriteAsOperandInternal(ostream &Out, const Value *V, bool PrintName,
|
||||
// whole instruction that generated it.
|
||||
//
|
||||
ostream &WriteAsOperand(ostream &Out, const Value *V, bool PrintType,
|
||||
bool PrintName, SlotCalculator *Table) {
|
||||
bool PrintName, const Module *Context) {
|
||||
map<const Type *, string> TypeNames;
|
||||
const Module *M = getModuleFromVal(V);
|
||||
if (Context == 0) Context = getModuleFromVal(V);
|
||||
|
||||
if (M && M->hasSymbolTable())
|
||||
fillTypeNameTable(M, TypeNames);
|
||||
if (Context && Context->hasSymbolTable())
|
||||
fillTypeNameTable(Context, TypeNames);
|
||||
|
||||
if (PrintType)
|
||||
printTypeInt(Out, V->getType(), TypeNames);
|
||||
|
||||
WriteAsOperandInternal(Out, V, PrintName, TypeNames, Table);
|
||||
WriteAsOperandInternal(Out, V, PrintName, TypeNames, 0);
|
||||
return Out;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user