mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Added naming to inserted phi copy values - for easy debugging
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1325 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -95,8 +95,8 @@ operator<< (ostream& os, const MachineInstr& minstr)
|
||||
|
||||
for (unsigned i=0, N=minstr.getNumOperands(); i < N; i++) {
|
||||
os << "\t" << minstr.getOperand(i);
|
||||
if( minstr.getOperand(i).opIsDef() ) os << "*";
|
||||
|
||||
if( minstr.getOperand(i).opIsDef() )
|
||||
os << "*";
|
||||
}
|
||||
|
||||
#undef DEBUG_VAL_OP_ITERATOR
|
||||
@ -122,7 +122,7 @@ operator<< (ostream& os, const MachineInstr& minstr)
|
||||
for(unsigned z=0; z < NumOfImpRefs; z++) {
|
||||
os << minstr.getImplicitRef(z);
|
||||
if( minstr.implicitRefIsDefined(z)) os << "*";
|
||||
cout << "\t";
|
||||
os << "\t";
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user