diff options
author | Nick Clifton <nickc@redhat.com> | 2000-06-08 19:19:23 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-06-08 19:19:23 +0000 |
commit | 9bab93495ab3f23df75d48b1a447361731faac5e (patch) | |
tree | a93af1c44c8a255e0876482befa3740b1de11e4e /gas | |
parent | 946efd95b840ea7c0716e3923d7bbd7b7fc342c8 (diff) | |
download | gdb-9bab93495ab3f23df75d48b1a447361731faac5e.zip gdb-9bab93495ab3f23df75d48b1a447361731faac5e.tar.gz gdb-9bab93495ab3f23df75d48b1a447361731faac5e.tar.bz2 |
Assign correct reloc value to size 1 constant valued fixes.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-arm.c | 11 |
2 files changed, 11 insertions, 5 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index e2fc6cd..c86531e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2000-06-08 Nick Clifton <nickc@cygnus.com> + + * config/tc-arm.c (cons_fix_new_arm): Assign correct reloc value + for size 1 fixes. + 2000-06-08 David O'Brien <obrien@FreeBSD.org> * configure.in (VERSION): Update to show this is the CVS mainline. diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 1a9ebc8..fb9edcc 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -6897,13 +6897,14 @@ cons_fix_new_arm (frag, where, size, exp) { bfd_reloc_code_real_type type; int pcrel = 0; - - /* Pick a reloc ... - * - * @@ Should look at CPU word size. - */ + + /* Pick a reloc. + FIXME: @@ Should look at CPU word size. */ switch (size) { + case 1: + type = BFD_RELOC_8; + break; case 2: type = BFD_RELOC_16; break; |