mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-07 16:26:11 +02:00
Applied patch from Chris Songer: Assembly View Fixups
This commit is contained in:
parent
4c7265d240
commit
783c8d5e5e
1 changed files with 1 additions and 3 deletions
|
@ -82,9 +82,7 @@ public class MIAsm {
|
||||||
while( (index < chars.length) && (chars[index] > '\u0020'))
|
while( (index < chars.length) && (chars[index] > '\u0020'))
|
||||||
index++;
|
index++;
|
||||||
|
|
||||||
// guard all whitespace
|
opcode = str.substring( 0, index );
|
||||||
if( index < chars.length )
|
|
||||||
opcode = str.substring( 0, index );
|
|
||||||
|
|
||||||
// skip any whitespace characters
|
// skip any whitespace characters
|
||||||
while( index < chars.length && chars[index] >= '\u0000' && chars[index] <= '\u0020')
|
while( index < chars.length && chars[index] >= '\u0000' && chars[index] <= '\u0020')
|
||||||
|
|
Loading…
Add table
Reference in a new issue