diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-11-22 20:36:55 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-11-22 13:36:55 -0700 |
commit | 668d9af56b0f546b97fd64fd7c469e39ae0cf0a0 (patch) | |
tree | 677d286c847ff781267db46fcb6702e5d5c9f3f1 | |
parent | 536333d40b7c5a62216bcccaf1c41f71f28c84e6 (diff) | |
download | gcc-668d9af56b0f546b97fd64fd7c469e39ae0cf0a0.zip gcc-668d9af56b0f546b97fd64fd7c469e39ae0cf0a0.tar.gz gcc-668d9af56b0f546b97fd64fd7c469e39ae0cf0a0.tar.bz2 |
dgux.c (struct option): Add new "description field".
* i386/dgux.c (struct option): Add new "description field".
* m88k/m88k.c (struct option): Likewise.
From-SVN: r23756
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/dgux.c | 6 | ||||
-rw-r--r-- | gcc/config/m88k/m88k.c | 1 |
3 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 340c247..252cd91 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Sun Nov 22 21:34:02 1998 Jeffrey A Law (law@cygnus.com) + + * i386/dgux.c (struct option): Add new "description field". + * m88k/m88k.c (struct option): Likewise. + Sun Nov 22 16:07:57 PST 1998 Jeff Law (law@cygnus.com) * version.c: Bump for snapshot. diff --git a/gcc/config/i386/dgux.c b/gcc/config/i386/dgux.c index 23e4cf1..c2a6ad9 100644 --- a/gcc/config/i386/dgux.c +++ b/gcc/config/i386/dgux.c @@ -1,6 +1,5 @@ /* Subroutines for GNU compiler for Intel 80x86 running DG/ux - Copyright (C) 1993, 1995 Free Software Foundation, Inc. - + Copyright (C) 1993, 1995, 1997 Free Software Foundation, Inc. Currently maintained by (gcc@dg-rtp.dg.com) This file is part of GNU CC. @@ -30,6 +29,7 @@ struct option char *string; int *variable; int on_value; + char *description; }; static int @@ -96,7 +96,7 @@ output_options (file, f_options, f_len, W_options, W_len, indent, pos, max); pos = output_option (file, sep, "-mcpu=", ix86_cpu_string, indent, pos, max); - pos = output_option (file, sep, "-march=", ix86_isa_string, indent, pos, max); + pos = output_option (file, sep, "-march=", ix86_arch_string, indent, pos, max); fprintf (file, term); } diff --git a/gcc/config/m88k/m88k.c b/gcc/config/m88k/m88k.c index 877ecf9..ba0fa32 100644 --- a/gcc/config/m88k/m88k.c +++ b/gcc/config/m88k/m88k.c @@ -1484,6 +1484,7 @@ struct options char *string; int *variable; int on_value; + char *description; }; static int |