From 6480b79a19ed9c161f20feac05a84a35ec14f1b9 Mon Sep 17 00:00:00 2001 From: David O'Brien Date: Thu, 8 Jun 2000 18:34:06 +0000 Subject: [PATCH] * 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: Nick Clifton Message-Id: <200006081749.KAA12558@elmo.cygnus.com> --- gas/ChangeLog | 6 ++++++ gas/config/tc-alpha.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 1d4519d7026..1c107a43d05 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2000-06-08 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-06-08 James E. Wilson * config/tc-ia64.c (generate_unwind_image): Call ia64_flush_insns. 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]; -- 2.30.2