From c388dee89bc49429e1ed21a4fd4c3d5e9da21798 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Tue, 12 Oct 1999 11:07:34 +0000 Subject: [PATCH] Nit fix. --- gas/ChangeLog | 4 ++++ gas/config/tc-i386.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index c3dd0526c5..46f9b357b8 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +1999-10-12 Alan Modra + + * config/tc-i386.c (i386_index_check): Correct #endif location. + Mon Oct 11 14:02:40 1999 Geoffrey Keating * as.c (show_usage): Document new options. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 7397f43757..1d8f07c5c9 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -3067,11 +3067,11 @@ i386_index_check (operand_string) fudged = 1; goto tryprefix; } -#endif if (fudged) as_bad (_("`%s' is not a valid base/index expression"), operand_string); else +#endif as_bad (_("`%s' is not a valid %s bit base/index expression"), operand_string, flag_16bit_code ^ (i.prefix[ADDR_PREFIX] != 0) ? "16" : "32");