diff options
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-arm.c | 11 |
1 files changed, 6 insertions, 5 deletions
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; |