diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2019-11-04 22:44:48 +0000 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2019-11-28 00:03:05 +0000 |
commit | 22eb4a06176dfef554008a62844e0ce30df2260f (patch) | |
tree | b1a99bdf6d2cf9c5201a8b124d05f3353d781ff5 /gas/ChangeLog | |
parent | 4762fe621e84347b6e1ad1f2d16d2bc6cd28495e (diff) | |
download | fsf-binutils-gdb-22eb4a06176dfef554008a62844e0ce30df2260f.zip fsf-binutils-gdb-22eb4a06176dfef554008a62844e0ce30df2260f.tar.gz fsf-binutils-gdb-22eb4a06176dfef554008a62844e0ce30df2260f.tar.bz2 |
gas: Check for overflow on return column in version 1 CIE DWARF
In version 1 of DWARF CIE format, the return register column is just a
single byte. For targets with large numbers of DWARF registers, any
use of a register with a high number for the return column
will (currently) silently overflow giving incorrect DWARF.
This commit adds an error when the overflow occurs.
gas/ChangeLog:
* dw2gencfi.c (output_cie): Error on return column overflow.
* testsuite/gas/riscv/cie-rtn-col-1.d: New file.
* testsuite/gas/riscv/cie-rtn-col-3.d: New file.
* testsuite/gas/riscv/cie-rtn-col.s: New file.
Change-Id: I1809f739ba7771737ec012807f0260e1a3ed5e64
Diffstat (limited to 'gas/ChangeLog')
-rw-r--r-- | gas/ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 474e5c3..c7dfd5e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,12 @@ 2019-11-22 Andrew Burgess <andrew.burgess@embecosm.com> + * dw2gencfi.c (output_cie): Error on return column overflow. + * testsuite/gas/riscv/cie-rtn-col-1.d: New file. + * testsuite/gas/riscv/cie-rtn-col-3.d: New file. + * testsuite/gas/riscv/cie-rtn-col.s: New file. + +2019-11-22 Andrew Burgess <andrew.burgess@embecosm.com> + * config/tc-riscv.c (tc_riscv_regname_to_dw2regnum): Lookup CSR names too. * testsuite/gas/riscv/csr-dw-regnums.d: New file. |