On Fri, 2012-05-25 at 12:19 +0300, Stefan Kristiansson wrote: > --- > gcc/config/or1k/or1k.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/gcc/config/or1k/or1k.c b/gcc/config/or1k/or1k.c > index 2a6bb96..28e5a40 100644 > --- a/gcc/config/or1k/or1k.c > +++ b/gcc/config/or1k/or1k.c > @@ -1292,9 +1292,9 @@ or1k_output_cmov (rtx * operands) > mode_got = GET_MODE (operands[4]); > > if (mode_calc != mode_got) > - return "\tl.cmov\t%0,%3,%2"; /* reversed */ > + return "l.cmov\t%0,%3,%2"; /* reversed */ > else > - return "\tl.cmov\t%0,%2,%3"; > + return "l.cmov\t%0,%2,%3"; > > } /* or1k_output_cmov () */ > Hi Stefan,
This is a cosmetic change which improves the layout of the generated assembler code, please go ahead and commit. (As you have noticed, the assembler generation is rather confused about when to use tabs with the OpenRISC 1000 implementation). Best wishes, Jeremy -- Tel: +44 (1590) 610184 Cell: +44 (7970) 676050 SkypeID: jeremybennett Email: [email protected] Web: www.embecosm.com _______________________________________________ OpenRISC mailing list [email protected] http://lists.openrisc.net/listinfo/openrisc
