From 074730b3c7219b2143a1cc80575ac513bdae1434 Mon Sep 17 00:00:00 2001 From: Jason Eckhardt Date: Tue, 5 Aug 2003 22:58:00 +0000 Subject: [PATCH] 2003-08-05 Jason Eckhardt * config/tc-i860.c (s_dual): Accept .dual directive only in the Intel syntax mode. (s_enddual): Likewise for .enddual. (s_atmp): Likewise for .atmp. --- gas/ChangeLog | 7 +++++++ gas/config/tc-i860.c | 20 +++++++++++++++++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index a6d2d48988..9e1d402724 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,10 @@ +2003-08-05 Jason Eckhardt + + * config/tc-i860.c (s_dual): Accept .dual directive only in + the Intel syntax mode. + (s_enddual): Likewise for .enddual. + (s_atmp): Likewise for .atmp. + 2003-08-04 Alan Modra * config/tc-i386.c (i386_intel_operand): Always call i386_index_check diff --git a/gas/config/tc-i860.c b/gas/config/tc-i860.c index 2488584f18..2418997e87 100644 --- a/gas/config/tc-i860.c +++ b/gas/config/tc-i860.c @@ -119,14 +119,20 @@ static enum dual dual_mode = DUAL_OFF; static void s_dual (int ignore ATTRIBUTE_UNUSED) { - dual_mode = DUAL_ON; + if (target_intel_syntax) + dual_mode = DUAL_ON; + else + as_bad (_("Directive .dual available only with -mintel-syntax option")); } /* Handle ".enddual" directive. */ static void s_enddual (int ignore ATTRIBUTE_UNUSED) { - dual_mode = DUAL_OFF; + if (target_intel_syntax) + dual_mode = DUAL_OFF; + else + as_bad (_("Directive .enddual available only with -mintel-syntax option")); } /* Temporary register used when expanding assembler pseudo operations. */ @@ -135,7 +141,15 @@ static int atmp = 31; static void s_atmp (int ignore ATTRIBUTE_UNUSED) { - register int temp; + int temp; + + if (! target_intel_syntax) + { + as_bad (_("Directive .atmp available only with -mintel-syntax option")); + demand_empty_rest_of_line (); + return; + } + if (strncmp (input_line_pointer, "sp", 2) == 0) { input_line_pointer += 2; -- 2.11.0