Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-patch] Brief Correction

> 
> 
> Hi,
> 
> The assembly changes for 1.0.1 had a fence posting error that would 
> suppress the opcode sometimes when there were no arguments. Please find 
> attached the small change that fixes it.
> 

Mikhailk, applied your patch to the head not CDT_1_0_1.
Was it intended to be in the branch ?

> Thanks!
> -Chris
> 
> diff -r -u 
> xide_compare/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/output/MIAsm.java 
> xide/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/output/MIAsm.java
> --- 
> xide_compare/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/output/MIAsm.java 
> Thu Mar 27 19:15:10 2003
> +++ 
> xide/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/output/MIAsm.java 
> Thu Mar 27 19:20:36 2003
> @@ -90,9 +90,7 @@
>   				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 && 
> 
> _______________________________________________
> cdt-patch mailing list
> cdt-patch@xxxxxxxxxxx
> http://dev.eclipse.org/mailman/listinfo/cdt-patch
> 


-- 
au revoir, alain
----
Aussi haut que l'on soit assis, on est toujours assis que sur son cul !!!



Back to the top