From: Alan Modra Date: Sat, 3 Jun 2000 13:06:33 +0000 (+0000) Subject: Update md_shortopts to what we actually handle. X-Git-Tag: readline-pre-41-import~289 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=65172ab8f7857e7ed63782a14be5c3a643d0f055;p=external%2Fbinutils.git Update md_shortopts to what we actually handle. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index e5fd998..2c766a7 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2000-06-03 Alan Modra + + * config/tc-i386.c (md_shortopts): Remove 'm', add 'q' to non-elf. + 2000-06-01 Alan Modra * expr.c (operand): Test is_end_of_line outside switch to catch @@ -2246,7 +2250,7 @@ Tue Aug 10 12:58:31 1999 Jeffrey A Law (law@cygnus.com) Always Use subsegment zero for the unwinders. (pa_level): Handle "2.0w". -Mon Aug 9 20:02:22 1998 J"orn Rennecke +Mon Aug 9 20:02:22 1999 J"orn Rennecke * config/tc-d30v.c (write_2_short): Don't group repeat instructions with the following instruction unless this was specified. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index bd7f5c2..8497f05 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -4259,9 +4259,9 @@ parse_register (reg_string, end_op) } #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) -CONST char *md_shortopts = "kmVQ:sq"; +const char *md_shortopts = "kVQ:sq"; #else -CONST char *md_shortopts = "m"; +const char *md_shortopts = "q"; #endif struct option md_longopts[] = { {NULL, no_argument, NULL, 0}