fix_new_exp: Print an error if passed a register.

This commit is contained in:
Nick Clifton 2001-03-23 18:15:49 +00:00
parent d4fc7db892
commit 37006e4391
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2001-03-23 Richard Sandiford <rsandifo@redhat.com>
* write.c (fix_new_exp): Print an error if passed a register.
2001-03-23 Hans-Peter Nilsson <hp@axis.com>
* config/tc-cris.c: Tweak attribution. Fix typos. PIC support.

View file

@ -283,6 +283,10 @@ fix_new_exp (frag, where, size, exp, pcrel, r_type)
case O_absent:
break;
case O_register:
as_bad (_("register value used as expression"));
break;
case O_add:
/* This comes up when _GLOBAL_OFFSET_TABLE_+(.-L0) is read, if
the difference expression cannot immediately be reduced. */