Fix shift left warning at source
cpu/ * fr30.cpu (f-m4): Replace -1 << 4 with -16. opcodes/ * fr30-ibld.c: Regenerate.
This commit is contained in:
parent
e14ec281fb
commit
62de1c630f
4 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2016-03-02 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* fr30.cpu (f-m4): Replace -1 << 4 with -16.
|
||||
|
||||
2016-02-02 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||
|
||||
* epiphany.opc (epiphany_print_insn): Set info->bytes_per_line to
|
||||
|
|
|
@ -163,7 +163,7 @@
|
|||
; ??? On a 64 bit host this doesn't get completely sign extended
|
||||
; if the value is recorded in a long, as it is during extraction.
|
||||
; Various fixes exist, pick one.
|
||||
((value pc) (or WI value (sll WI (const -1) (const 4))))
|
||||
((value pc) (or WI value (const -16)))
|
||||
)
|
||||
(dnf f-u8 "8 bit unsigned" () 8 8)
|
||||
(dnf f-i8 "8 bit unsigned" () 4 8)
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2016-03-02 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* fr30-ibld.c: Regenerate.
|
||||
|
||||
2016-03-01 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR target/19747
|
||||
|
|
|
@ -881,7 +881,7 @@ fr30_cgen_extract_operand (CGEN_CPU_DESC cd,
|
|||
{
|
||||
long value;
|
||||
length = extract_normal (cd, ex_info, insn_value, 0, 0, 8, 4, 16, total_length, pc, & value);
|
||||
value = ((value) | (((-1UL) << (4))));
|
||||
value = ((value) | (-16));
|
||||
fields->f_m4 = value;
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue