Skip to content

Commit

Permalink
Merge pull request #4170 from knn-k/aarch64debug5
Browse files Browse the repository at this point in the history
AArch64: Implement TR_Debug::print(ARM64CompareBranchInstruction)
  • Loading branch information
0xdaryl authored Jul 30, 2019
2 parents 77987cf + f7cfa80 commit f335148
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion compiler/aarch64/codegen/ARM64Debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,10 @@ void
TR_Debug::print(TR::FILE *pOutFile, TR::ARM64CompareBranchInstruction *instr)
{
printPrefix(pOutFile, instr);
TR_UNIMPLEMENTED();
trfprintf(pOutFile, "%s \t", getOpCodeName(&instr->getOpCode()));
print(pOutFile, instr->getSource1Register(), TR_WordReg); trfprintf(pOutFile, ", ");
print(pOutFile, instr->getLabelSymbol());
trfflush(_comp->getOutFile());
}

void
Expand Down

0 comments on commit f335148

Please sign in to comment.