mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-05 16:15:25 +02:00
Bug 417895. Use tab instead of space between opcode and operand.
This makes the disassembly easier to read.
Change-Id: I5f7d737f321aa05f5056a74af70794ee618f323c
Signed-off-by: Jon Beniston <jon@beniston.com>
(cherry picked from commit 708d6a6318
)
This commit is contained in:
parent
49cfd17ccb
commit
086de101df
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2000, 2014 QNX Software Systems and others.
|
||||
* Copyright (c) 2000, 2015 QNX Software Systems and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
|
@ -50,7 +50,7 @@ public class MIInstruction extends AbstractInstruction {
|
|||
|
||||
@Override
|
||||
public String getInstruction() {
|
||||
return opcode + " " + args; //$NON-NLS-1$;
|
||||
return opcode + "\t" + args; //$NON-NLS-1$;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue