diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-01-02 13:09:57 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-01-02 13:09:57 +0000 |
commit | 388fa5c64e37b541afceac7bafa802c55a4375f4 (patch) | |
tree | 98bf5bf9626a299c0963c621a2569deed44bbaf3 /gas | |
parent | 03ab605af61bef52340eecc6433a3c795478eb35 (diff) | |
download | gdb-388fa5c64e37b541afceac7bafa802c55a4375f4.zip gdb-388fa5c64e37b541afceac7bafa802c55a4375f4.tar.gz gdb-388fa5c64e37b541afceac7bafa802c55a4375f4.tar.bz2 |
* config/tc-i386.c (i386_operand): Give an error if there are
unrecognized characters after an expression.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 14 |
2 files changed, 15 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 24c9ac0..953a98a 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Fri Jan 2 16:08:54 1998 Ian Lance Taylor <ian@cygnus.com> + + * config/tc-i386.c (i386_operand): Give an error if there are + unrecognized characters after an expression. + Wed Dec 31 12:29:47 1997 Jeffrey A Law (law@cygnus.com) * config/tc-mn10200.c (md_relax_table): Correct branch ranges. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 3bd5398..cec18e7 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -302,18 +302,18 @@ i386_align_code (fragP, count) {0xeb,0x0d,0x90,0x90,0x90,0x90,0x90, /* jmp .+15; lotsa nops */ 0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90}; static const char f16_4[] = - {0x8d,0xb6,0x00,0x00}; /* lea 0w(%si),%si */ + {0x8d,0xb4,0x00,0x00}; /* lea 0w(%si),%si */ static const char f16_5[] = {0x90, /* nop */ - 0x8d,0xb6,0x00,0x00}; /* lea 0w(%si),%si */ + 0x8d,0xb4,0x00,0x00}; /* lea 0w(%si),%si */ static const char f16_6[] = {0x89,0xf6, /* mov %si,%si */ 0x8d,0xbd,0x00,0x00}; /* lea 0w(%di),%di */ static const char f16_7[] = - {0x8d,0x76,0x00, /* lea 0(%si),%si */ + {0x8d,0x74,0x00, /* lea 0(%si),%si */ 0x8d,0xbd,0x00,0x00}; /* lea 0w(%di),%di */ static const char f16_8[] = - {0x8d,0xb6,0x00,0x00, /* lea 0w(%si),%si */ + {0x8d,0xb4,0x00,0x00, /* lea 0w(%si),%si */ 0x8d,0xbd,0x00,0x00}; /* lea 0w(%di),%di */ static const char *const f32_patt[] = { f32_1, f32_2, f32_3, f32_4, f32_5, f32_6, f32_7, f32_8, @@ -2112,6 +2112,9 @@ i386_operand (operand_string) input_line_pointer = ++op_string; /* must advance op_string! */ SKIP_WHITESPACE (); exp_seg = expression (exp); + if (*input_line_pointer != '\0') + as_bad ("unrecognized characters `%s' in expression", + input_line_pointer); input_line_pointer = save_input_line_pointer; if (exp->X_op == O_absent) @@ -2719,6 +2722,9 @@ md_apply_fix3 (fixP, valp, seg) register char *p = fixP->fx_where + fixP->fx_frag->fr_literal; valueT value = *valp; + if (fixP->fx_r_type == BFD_RELOC_32 && fixP->fx_pcrel) + fixP->fx_r_type = BFD_RELOC_32_PCREL; + #if defined (BFD_ASSEMBLER) && !defined (TE_Mach) /* * This is a hack. There should be a better way to |