1
0
Fork 0
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:
Mikhail Khodjaiants 2003-03-28 15:34:57 +00:00
parent 4c7265d240
commit 783c8d5e5e

View file

@ -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')