diff options
author | Ruchira Sasanka <sasanka@students.uiuc.edu> | 2001-11-14 20:05:23 +0000 |
---|---|---|
committer | Ruchira Sasanka <sasanka@students.uiuc.edu> | 2001-11-14 20:05:23 +0000 |
commit | 8d24337eea5f9462908b7ac07a997935e31ddd59 (patch) | |
tree | e60b41599b3bf4dbf246bffe27dff9096fb8c1f5 /lib/CodeGen/MachineInstr.cpp | |
parent | ecd5813639e305d55ce8c2e3517228e819d5817b (diff) |
Small changed to printing a machine operand - It the operand is a def, it prints
a star after it - only for debugging
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1309 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | lib/CodeGen/MachineInstr.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index 3ce7a2a7f1..5993daf65a 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp @@ -92,8 +92,11 @@ operator<< (ostream& os, const MachineInstr& minstr) { os << TargetInstrDescriptors[minstr.opCode].opCodeString; - for (unsigned i=0, N=minstr.getNumOperands(); i < N; i++) + for (unsigned i=0, N=minstr.getNumOperands(); i < N; i++) { os << "\t" << minstr.getOperand(i); + if( minstr.getOperand(i).opIsDef() ) os << "*"; + + } #undef DEBUG_VAL_OP_ITERATOR #ifdef DEBUG_VAL_OP_ITERATOR @@ -117,7 +120,8 @@ operator<< (ostream& os, const MachineInstr& minstr) for(unsigned z=0; z < NumOfImpRefs; z++) { os << minstr.getImplicitRef(z); - cout << "\t"; + if( minstr.implicitRefIsDefined(z)) os << "*"; + cout << "\t"; } } |