From: Richard Henderson Date: Fri, 8 Feb 2002 10:03:01 +0000 (+0000) Subject: * config/tc-alpha.c (alpha_force_relocation): Don't assert that X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=50a4c611305fef58905ffccdf0092ef69562598f;p=binutils-gdb.git * config/tc-alpha.c (alpha_force_relocation): Don't assert that we've eliminated all foreign relocation types yet. (alpha_fix_adjustable): Likewise. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 080de453989..2daf90f5f3e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2002-02-08 Richard Henderson + + * config/tc-alpha.c (alpha_force_relocation): Don't assert that + we've eliminated all foreign relocation types yet. + (alpha_fix_adjustable): Likewise. + 2002-02-08 Alexandre Oliva Contribute sh64-elf. diff --git a/gas/config/tc-alpha.c b/gas/config/tc-alpha.c index b1a34710085..44c651b755a 100644 --- a/gas/config/tc-alpha.c +++ b/gas/config/tc-alpha.c @@ -1399,8 +1399,6 @@ alpha_force_relocation (f) return 0; default: - assert ((int) f->fx_r_type < 0 - && -(int) f->fx_r_type < (int) alpha_num_operands); return 0; } } @@ -1448,8 +1446,6 @@ alpha_fix_adjustable (f) return 1; default: - assert ((int) f->fx_r_type < 0 - && - (int) f->fx_r_type < (int) alpha_num_operands); return 1; } /*NOTREACHED*/