diff options
author | Maciej W. Rozycki <macro@imgtec.com> | 2016-10-25 02:08:26 +0100 |
---|---|---|
committer | Maciej W. Rozycki <macro@imgtec.com> | 2016-10-25 02:08:26 +0100 |
commit | a18a2a347dd85e93d1083c984deffdc0dacf1bd6 (patch) | |
tree | 63290660b553b2fe38d7d6987d0b5ddd2a682128 /bfd/elfxx-mips.c | |
parent | 73b088be7219eaa2fa73374006da9665d8cc5028 (diff) | |
download | gdb-a18a2a347dd85e93d1083c984deffdc0dacf1bd6.zip gdb-a18a2a347dd85e93d1083c984deffdc0dacf1bd6.tar.gz gdb-a18a2a347dd85e93d1083c984deffdc0dacf1bd6.tar.bz2 |
elfxx-mips: Correct STUB_JALR's description
bfd/
* elfxx-mips.c (STUB_JALR): Correct description.
Diffstat (limited to 'bfd/elfxx-mips.c')
-rw-r--r-- | bfd/elfxx-mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index 80714d2..e4fc043 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -913,7 +913,7 @@ static bfd *reldyn_sorting_bfd; : 0x8f998010)) /* lw t9,0x8010(gp) */ #define STUB_MOVE 0x03e07825 /* or t7,ra,zero */ #define STUB_LUI(VAL) (0x3c180000 + (VAL)) /* lui t8,VAL */ -#define STUB_JALR 0x0320f809 /* jalr t9,ra */ +#define STUB_JALR 0x0320f809 /* jalr ra,t9 */ #define STUB_ORI(VAL) (0x37180000 + (VAL)) /* ori t8,t8,VAL */ #define STUB_LI16U(VAL) (0x34180000 + (VAL)) /* ori t8,zero,VAL unsigned */ #define STUB_LI16S(abfd, VAL) \ |