diff options
author | Alan Modra <amodra@gmail.com> | 1999-10-12 11:07:34 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 1999-10-12 11:07:34 +0000 |
commit | c388dee89bc49429e1ed21a4fd4c3d5e9da21798 (patch) | |
tree | add0e5ee0968e2b57f4045d2ef4b7c2d23dcef5b /gas/config/tc-i386.c | |
parent | cf911c2a8250b33c74bf2c9c634926fcf3e6abdc (diff) | |
download | gdb-c388dee89bc49429e1ed21a4fd4c3d5e9da21798.zip gdb-c388dee89bc49429e1ed21a4fd4c3d5e9da21798.tar.gz gdb-c388dee89bc49429e1ed21a4fd4c3d5e9da21798.tar.bz2 |
Nit fix.
Diffstat (limited to 'gas/config/tc-i386.c')
-rw-r--r-- | gas/config/tc-i386.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 7397f43..1d8f07c 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"); |