mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
ubsan: m32r: left shift of negative value
cpu/ * m32r.cpu (f-disp8): Avoid left shift of negative values. (f-disp16, f-disp24): Likewise. opcodes/ * m32r-ibld.c: Regenerate.
This commit is contained in:
@@ -478,13 +478,13 @@
|
||||
(dnf f-hi16 "high 16 bits" (SIGN-OPT) 16 16)
|
||||
(df f-disp8 "disp8, slot unknown" (PCREL-ADDR RELOC) 8 8 INT
|
||||
((value pc) (sra WI (sub WI value (and WI pc (const -4))) (const 2)))
|
||||
((value pc) (add WI (sll WI value (const 2)) (and WI pc (const -4)))))
|
||||
((value pc) (add WI (mul WI value (const 4)) (and WI pc (const -4)))))
|
||||
(df f-disp16 "disp16" (PCREL-ADDR RELOC) 16 16 INT
|
||||
((value pc) (sra WI (sub WI value pc) (const 2)))
|
||||
((value pc) (add WI (sll WI value (const 2)) pc)))
|
||||
((value pc) (add WI (mul WI value (const 4)) pc)))
|
||||
(df f-disp24 "disp24" (PCREL-ADDR RELOC) 8 24 INT
|
||||
((value pc) (sra WI (sub WI value pc) (const 2)))
|
||||
((value pc) (add WI (sll WI value (const 2)) pc)))
|
||||
((value pc) (add WI (mul WI value (const 4)) pc)))
|
||||
|
||||
(dnf f-op23 "op2.3" () 9 3)
|
||||
(dnf f-op3 "op3" () 14 2)
|
||||
|
||||
Reference in New Issue
Block a user