mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-08 08:45:44 +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'))
|
||||
index++;
|
||||
|
||||
// guard all whitespace
|
||||
if( index < chars.length )
|
||||
opcode = str.substring( 0, index );
|
||||
opcode = str.substring( 0, index );
|
||||
|
||||
// skip any whitespace characters
|
||||
while( index < chars.length && chars[index] >= '\u0000' && chars[index] <= '\u0020')
|
||||
|
|
Loading…
Add table
Reference in a new issue