From 162e34854c1bdce47b6476bcfcc49ca1ac96b13c Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Wed, 24 Feb 1993 23:30:59 +0000 Subject: [PATCH] (s_xword): Now accepts large integer constants, but not symbolic constants or expressions. --- gas/config/tc-sparc.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c index 861ce335523..147ca5b4ebd 100644 --- a/gas/config/tc-sparc.c +++ b/gas/config/tc-sparc.c @@ -451,8 +451,7 @@ s_proc () static void s_xword () { - md_number_to_chars (frag_more (4), 0, 4); - cons (4); + big_cons (8); } struct priv_reg_entry @@ -2221,13 +2220,15 @@ print_insn (insn) * warnings. * * start-sanitize-v9 + * -Av9 + * Another architecture switch. + * + * Note: * Bumping between incompatible architectures is always an * error. For example, from sparclite to v9. * end-sanitize-v9 */ -/* start-sanitize-v9 */ -/* There is also a -Av9 architecture option. xoxorich. */ -/* end-sanitize-v9 */ + int md_parse_option (argP, cntP, vecP) char **argP; -- 2.30.2