Skip to main content

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

Hi,

I am looking forward to working with what's going into the head now, but for the moment we are completely 1.0.1 focused. I took a brief look at the head, I think it works there as well but have not built/run on the head.

Thanks!
-Chris

At 08:37 AM 3/28/2003 -0500, Alain Magloire wrote:
>
>
> 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 !!!

_______________________________________________
cdt-patch mailing list
cdt-patch@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/cdt-patch



Back to the top