* tc-hppa.c (pa_ip): Reject match for '#' immediate if not pa20.

This commit is contained in:
Dave Anglin 2005-07-19 01:14:10 +00:00
parent 32204df4ce
commit 71e17562a8
2 changed files with 6 additions and 0 deletions

View File

@ -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>
* config/tc-i386.c (md_begin): Use IS_ELF.

View File

@ -3066,6 +3066,8 @@ pa_ip (str)
/* Handle 14 bit immediate, shifted left three times. */
case '#':
if (bfd_get_mach (stdoutput) != pa20)
break;
the_insn.field_selector = pa_chk_field_selector (&s);
get_expression (s);
s = expr_end;