1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-05 08:05:24 +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:
Jon Beniston 2015-08-20 14:06:46 +01:00 committed by Marc Khouzam
parent 49cfd17ccb
commit 086de101df

View file

@ -1,10 +1,10 @@
/*******************************************************************************
* 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
* http://www.eclipse.org/legal/epl-v10.html
*
*
* Contributors:
* QNX Software Systems - Initial API and implementation
* Ericsson - Adapted for DSF
@ -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