mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
* config/bfin-parse.y (asm_1): Fix reduce/reduce conflicts.
This commit is contained in:
parent
181b26eaf1
commit
37b3293520
@ -1,3 +1,7 @@
|
||||
2008-09-26 Jie Zhang <jie.zhang@analog.com>
|
||||
|
||||
* config/bfin-parse.y (asm_1): Fix reduce/reduce conflicts.
|
||||
|
||||
2008-09-24 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* dw2gencfi.c (DWARF2_ADDR_SIZE): Provide default.
|
||||
|
@ -1932,22 +1932,20 @@ asm_1:
|
||||
else
|
||||
return yyerror ("Bad shift value or register");
|
||||
}
|
||||
| HALF_REG ASSIGN HALF_REG LESS_LESS expr
|
||||
{
|
||||
if (IS_UIMM ($5, 4))
|
||||
{
|
||||
notethat ("dsp32shiftimm: dregs_half = dregs_half << uimm4\n");
|
||||
$$ = DSP32SHIFTIMM (0x0, &$1, imm5 ($5), &$3, 2, HL2 ($1, $3));
|
||||
}
|
||||
else
|
||||
return yyerror ("Bad shift value");
|
||||
}
|
||||
| HALF_REG ASSIGN HALF_REG LESS_LESS expr smod
|
||||
{
|
||||
if (IS_UIMM ($5, 4))
|
||||
{
|
||||
notethat ("dsp32shiftimm: dregs_half = dregs_half << uimm4\n");
|
||||
$$ = DSP32SHIFTIMM (0x0, &$1, imm5 ($5), &$3, $6.s0, HL2 ($1, $3));
|
||||
if ($6.s0)
|
||||
{
|
||||
notethat ("dsp32shiftimm: dregs_half = dregs_half << uimm4 (S)\n");
|
||||
$$ = DSP32SHIFTIMM (0x0, &$1, imm5 ($5), &$3, $6.s0, HL2 ($1, $3));
|
||||
}
|
||||
else
|
||||
{
|
||||
notethat ("dsp32shiftimm: dregs_half = dregs_half << uimm4\n");
|
||||
$$ = DSP32SHIFTIMM (0x0, &$1, imm5 ($5), &$3, 2, HL2 ($1, $3));
|
||||
}
|
||||
}
|
||||
else
|
||||
return yyerror ("Bad shift value");
|
||||
|
Loading…
Reference in New Issue
Block a user