diff options
author | Jeff Law <law@redhat.com> | 1999-11-02 08:46:25 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-11-02 08:46:25 +0000 |
commit | 832fc2027d629765aca3b87e19f8e750dcf168d2 (patch) | |
tree | 17ca0518e1a130013c212de80a8425e1f25587b0 /bfd/som.c | |
parent | ff211cbfd7576eda505fb49a64c9b3db17d472cc (diff) | |
download | binutils-gdb-832fc2027d629765aca3b87e19f8e750dcf168d2.tar.gz |
* som.c (som_fixup_formats): Improve handling of R_AUX_UNWIND,
R_LINETAB, R_LINETAB_ESC, and R_COMMENT.
Diffstat (limited to 'bfd/som.c')
-rw-r--r-- | bfd/som.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/som.c b/bfd/som.c index 77de9583f93..6f2b6c3abd6 100644 --- a/bfd/som.c +++ b/bfd/som.c @@ -634,8 +634,8 @@ static const struct fixup_format som_fixup_formats[256] = 4, "Ve=", /* 0xcd */ /* R_TRANSLATED */ 0, "", /* 0xce */ - /* R_RESERVED */ - 0, "", /* 0xcf */ + /* R_AUX_UNWIND */ + 0, "Sd=Vf=Ef=", /* 0xcf */ /* R_COMP1 */ 0, "Ob=", /* 0xd0 */ /* R_COMP2 */ @@ -654,13 +654,13 @@ static const struct fixup_format som_fixup_formats[256] = /* R_N1SEL */ 0, "", /* 0xd9 */ /* R_LINETAB */ - 0, "", /* 0xda */ + 0, "Eb=Sd=Ve=", /* 0xda */ /* R_LINETAB_ESC */ - 0, "", /* 0xdb */ + 0, "Eb=Mb=", /* 0xdb */ /* R_LTP_OVERRIDE */ 0, "", /* 0xdc */ /* R_COMMENT */ - 0, "", /* 0xdd */ + 0, "Ob=Ve=", /* 0xdd */ /* R_RESERVED */ 0, "", /* 0xde */ 0, "", /* 0xdf */ |