Don't print BRANCH operands.

git-svn-id: svn://10.0.0.236/trunk@67525 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
beard%netscape.com
2000-04-28 13:46:01 +00:00
parent 1eb2c54f7f
commit 6912fa0d4b
2 changed files with 2 additions and 2 deletions

View File

@@ -135,7 +135,7 @@ class Tracer : public Context::Listener {
printFormat(stdOut, "%04X: ", offset);
Instruction* i = *pc;
stdOut << *i;
if (i->count() > 0) {
if (i->op() != BRANCH && i->count() > 0) {
stdOut << " [";
i->printOperands(stdOut, *registers);
stdOut << "]\n";