diff options
author | Andrea Corallo <andrea.corallo@arm.com> | 2021-06-11 09:53:09 +0200 |
---|---|---|
committer | Andrea Corallo <andrea.corallo@arm.com> | 2021-07-26 14:18:24 +0200 |
commit | 0264bf6fe3028a89c9a6a7b49c489831eb33f506 (patch) | |
tree | 971bd3b81d2f62be091de8a82a35f9763e898c5e /gas | |
parent | 5c43020d83f9f3529e71fcd19f3f78e0abcbe5ed (diff) | |
download | gdb-0264bf6fe3028a89c9a6a7b49c489831eb33f506.zip gdb-0264bf6fe3028a89c9a6a7b49c489831eb33f506.tar.gz gdb-0264bf6fe3028a89c9a6a7b49c489831eb33f506.tar.bz2 |
PATCH [10/10] arm: Alias 'ra_auth_code' to r12 for pacbti.
gas/
2021-06-11 Andrea Corallo <andrea.corallo@arm.com>
* config/tc-arm.c (reg_names): Alias 'ra_auth_code' to r12.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/config/tc-arm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 40e9d2e..c9e6558 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -23957,6 +23957,9 @@ static const struct reg_entry reg_names[] = /* XScale accumulator registers. */ REGNUM(acc,0,XSCALE), REGNUM(ACC,0,XSCALE), + + /* Alias 'ra_auth_code' to r12 for pacbti. */ + REGDEF(ra_auth_code,12,RN), }; #undef REGDEF #undef REGNUM |