diff options
author | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2019-10-21 16:59:11 +0100 |
---|---|---|
committer | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2020-01-02 13:07:37 +0000 |
commit | a65b5de624a20f37f0fed484d6208d014f10a6f8 (patch) | |
tree | 60288df99df08395f8b0f18030e7d24e2e094bc6 /gas/ChangeLog | |
parent | d73b58f4b1f193d2e58c0a1774e01561b16866b9 (diff) | |
download | gdb-a65b5de624a20f37f0fed484d6208d014f10a6f8.zip gdb-a65b5de624a20f37f0fed484d6208d014f10a6f8.tar.gz gdb-a65b5de624a20f37f0fed484d6208d014f10a6f8.tar.bz2 |
[ARM][gas] fix build breakage with gcc-10 by using correct enum type
Fixes
../../gas/config/tc-arm.c: In function 'parse_reg_list':
../../gas/config/tc-arm.c:1946:35: error: implicit conversion from 'enum reg_list_els' to 'enum arm_reg_type' [-Werror=enum-conversion]
1946 | reg = arm_reg_parse (&str, REGLIST_RN);
| ^~~~~~~~~~
gas/ChangeLog:
* config/tc-arm.c (parse_reg_list): Use REG_TYPE_RN instead of
REGLIST_RN.
Diffstat (limited to 'gas/ChangeLog')
-rw-r--r-- | gas/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index c78b42b..198f787 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2020-01-02 Szabolcs Nagy <szabolcs.nagy@arm.com> + + * config/tc-arm.c (parse_reg_list): Use REG_TYPE_RN instead of + REGLIST_RN. + 2020-01-01 Alan Modra <amodra@gmail.com> Update year range in copyright notice of all files. |