* tc-hppa.c (pa_ip): Reject match for '#' immediate if not pa20.
This commit is contained in:
parent
32204df4ce
commit
71e17562a8
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2005-07-18 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
|
||||||
|
|
||||||
|
* tc-hppa.c (pa_ip): Reject match for '#' immediate if not pa20.
|
||||||
|
|
||||||
2005-07-18 Jan Beulich <jbeulich@novell.com>
|
2005-07-18 Jan Beulich <jbeulich@novell.com>
|
||||||
|
|
||||||
* config/tc-i386.c (md_begin): Use IS_ELF.
|
* config/tc-i386.c (md_begin): Use IS_ELF.
|
||||||
|
|
|
@ -3066,6 +3066,8 @@ pa_ip (str)
|
||||||
|
|
||||||
/* Handle 14 bit immediate, shifted left three times. */
|
/* Handle 14 bit immediate, shifted left three times. */
|
||||||
case '#':
|
case '#':
|
||||||
|
if (bfd_get_mach (stdoutput) != pa20)
|
||||||
|
break;
|
||||||
the_insn.field_selector = pa_chk_field_selector (&s);
|
the_insn.field_selector = pa_chk_field_selector (&s);
|
||||||
get_expression (s);
|
get_expression (s);
|
||||||
s = expr_end;
|
s = expr_end;
|
||||||
|
|
Loading…
Add table
Reference in a new issue