From: David O'Brien Date: Wed, 30 Aug 2000 23:39:17 +0000 (+0000) Subject: * config/tc-alpha.c (md_undefined_symbol): Properly understand that $at X-Git-Tag: binutils-2_10_1~34 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=893fbe3e4cce6eb61b076e744fa5189f1c21acb9;p=thirdparty%2Fbinutils-gdb.git * config/tc-alpha.c (md_undefined_symbol): Properly understand that $at is the integer register $r28, vs. both $r28 and the floating point register $f28. This quiets a bogus warning about needing ".set noat". Approved by: Philip Blundell Message-Id: --- diff --git a/gas/ChangeLog b/gas/ChangeLog index e11a3f52275..9c9b1948f1d 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2000-08-30 Matthew Jacob + + * config/tc-alpha.c (md_undefined_symbol): Properly understand that + $at is the integer register $r28, vs. both $r28 and the floating + point register $f28. + 2000-04-14 Matthew Green * configure.in: Add NetBSD/sparc ELF and NetBSD/sparc64 support. diff --git a/gas/config/tc-alpha.c b/gas/config/tc-alpha.c index 61dba4b8a4f..0eed2e2a6d5 100644 --- a/gas/config/tc-alpha.c +++ b/gas/config/tc-alpha.c @@ -1372,7 +1372,7 @@ md_undefined_symbol(name) else break; - if (!alpha_noat_on && num == AXP_REG_AT) + if (!alpha_noat_on && (num + is_float) == AXP_REG_AT) as_warn(_("Used $at without \".set noat\"")); return alpha_register_table[num + is_float];