diff options
author | Bob Wilson <bob.wilson@acm.org> | 2005-03-21 19:55:05 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@acm.org> | 2005-03-21 19:55:05 +0000 |
commit | e80a82a32bdc22f1d1895f9b2c42391b0b7fb552 (patch) | |
tree | 42e5e232a8b80c1bc615ace8380770195c02b4f2 | |
parent | 460d93cc31143c3fadf056f707876b3bf8e18fb1 (diff) | |
download | gdb-e80a82a32bdc22f1d1895f9b2c42391b0b7fb552.zip gdb-e80a82a32bdc22f1d1895f9b2c42391b0b7fb552.tar.gz gdb-e80a82a32bdc22f1d1895f9b2c42391b0b7fb552.tar.bz2 |
* config/tc-xtensa.c (md_apply_fix3): Recognize XTENSA_PLT relocations.
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-xtensa.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 4ffd006..a9dbe57 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Bob Wilson <bob.wilson@acm.org> + + * config/tc-xtensa.c (md_apply_fix3): Recognize XTENSA_PLT relocations. + 2005-03-21 Maciej W. Rozycki <macro@mips.com> * config/tc-mips.c (mips_frob_file): Sort BFD_RELOC_MIPS16_LO16 diff --git a/gas/config/tc-xtensa.c b/gas/config/tc-xtensa.c index 1eb6c42..81e9886 100644 --- a/gas/config/tc-xtensa.c +++ b/gas/config/tc-xtensa.c @@ -5711,6 +5711,7 @@ md_apply_fix3 (fixS *fixP, valueT *valP, segT seg) } break; + case BFD_RELOC_XTENSA_PLT: case BFD_RELOC_XTENSA_ASM_EXPAND: case BFD_RELOC_XTENSA_SLOT0_ALT: case BFD_RELOC_XTENSA_SLOT1_ALT: |