mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 02:53:48 +08:00
Add %mrp (millicode return pointer) alias for %r2 or %r31, depending on 32 or
64 bit architecture.
This commit is contained in:
parent
4772d57e2a
commit
8be31359fc
@ -1,3 +1,8 @@
|
||||
2001-06-22 Matthew Wilcox <willy@ldl.fc.hp.com>
|
||||
|
||||
* config/tc-hppa.c: Add %mrp (millicode return pointer) alias
|
||||
for %r2 or %r31, depending on 32 or 64 bit architecture.
|
||||
|
||||
2001-06-21 Philip Blundell <philb@gnu.org>
|
||||
|
||||
* config/tc-arm.c (cplong_flag): Rename to long_flag. All uses
|
||||
|
@ -954,6 +954,11 @@ static const struct pd_reg pre_defined_registers[] =
|
||||
{"%isr", 20},
|
||||
{"%itmr", 16},
|
||||
{"%iva", 14},
|
||||
#if TARGET_ARCH_SIZE == 64
|
||||
{"%mrp", 2},
|
||||
#else
|
||||
{"%mrp", 31},
|
||||
#endif
|
||||
{"%pcoq", 18},
|
||||
{"%pcsq", 17},
|
||||
{"%pidr1", 8},
|
||||
|
Loading…
Reference in New Issue
Block a user