diff options
author | Nick Clifton <nickc@cygnus.com> | 1999-03-23 09:02:07 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 1999-03-23 09:02:07 +0000 |
commit | bdeb987972a871db073eec013477400e188ead31 (patch) | |
tree | e08aaaaca42ee78aabb886bc0ffa2c734b1d66d9 /gcc | |
parent | eb30a375348f31f7c8f74bdd9dedff4390b79014 (diff) | |
download | gcc-bdeb987972a871db073eec013477400e188ead31.zip gcc-bdeb987972a871db073eec013477400e188ead31.tar.gz gcc-bdeb987972a871db073eec013477400e188ead31.tar.bz2 |
Add doc strings for SUBTARGET_SWITCHES
From-SVN: r25924
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/arm/riscix.h | 6 | ||||
-rw-r--r-- | gcc/config/arm/riscix1-1.h | 2 |
3 files changed, 10 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ea806ce..c35b226 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Tue Mar 23 09:00:39 1999 Nick Clifton <nickc@cygnus.com> + + * config/arm/riscix1.h (SUBTARGET_SWITCHES): Add doc string. + * config/arm/riscix1-1.h (SUBTARGET_SWITCHES): Add doc string. + Tue Mar 23 07:50:20 1999 Mark Mitchell <mark@codesourcery.com> * function.c: Include hash.h. diff --git a/gcc/config/arm/riscix.h b/gcc/config/arm/riscix.h index 7c5f1ce..07bdb0f 100644 --- a/gcc/config/arm/riscix.h +++ b/gcc/config/arm/riscix.h @@ -79,8 +79,10 @@ Boston, MA 02111-1307, USA. */ /* None of these is actually used in cc1. If we don't define them in target switches cc1 complains about them. For the sake of argument lets allocate bit 31 of target flags for such options. */ -#define SUBTARGET_SWITCHES \ -{"bsd", 0x80000000}, {"xopen", 0x80000000}, {"no-symrename", 0x80000000}, +#define SUBTARGET_SWITCHES \ +{"bsd", 0x80000000, ""}, \ +{"xopen", 0x80000000, ""}, \ +{"no-symrename", 0x80000000, ""}, /* Run-time Target Specification. */ diff --git a/gcc/config/arm/riscix1-1.h b/gcc/config/arm/riscix1-1.h index 7311067..e896a1e 100644 --- a/gcc/config/arm/riscix1-1.h +++ b/gcc/config/arm/riscix1-1.h @@ -39,7 +39,7 @@ Boston, MA 02111-1307, USA. */ but everything still compiles. */ /* None of these is actually used in cc1, so they modify bit 31 */ #define SUBTARGET_SWITCHES \ -{"bsd", 0x80000000}, +{"bsd", 0x80000000, ""}, /* Run-time Target Specification. */ |