mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-31 01:45:52 +08:00
* m32r.opc (parse_slo16): Fix bad application of previous patch.
This commit is contained in:
@ -179,11 +179,7 @@ parse_slo16 (CGEN_CPU_DESC cd,
|
||||
++*strp;
|
||||
if (errmsg == NULL
|
||||
&& result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
|
||||
{
|
||||
value &= 0xffff;
|
||||
if (value & 0x8000)
|
||||
value = ((value & 0xffff) ^ 0x8000) - 0x8000;
|
||||
}
|
||||
value = ((value & 0xffff) ^ 0x8000) - 0x8000;
|
||||
*valuep = value;
|
||||
return errmsg;
|
||||
}
|
||||
|
Reference in New Issue
Block a user