diff options
author | Fred Fish <fnf@be.com> | 1999-10-28 09:34:40 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 1999-10-28 09:34:40 +0000 |
commit | 1d96e5b4b8d8a8ad67f90d0ad7c1210c7081efb9 (patch) | |
tree | d6a0e3a40b36bcd89223daab950e1546d12e8071 | |
parent | 723ae7c17d94b54f886c7f3cb212b8256fc8bb5f (diff) | |
download | gcc-1d96e5b4b8d8a8ad67f90d0ad7c1210c7081efb9.zip gcc-1d96e5b4b8d8a8ad67f90d0ad7c1210c7081efb9.tar.gz gcc-1d96e5b4b8d8a8ad67f90d0ad7c1210c7081efb9.tar.bz2 |
Document that CC1_SPEC is used by cc1plus
From-SVN: r30236
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tm.texi | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f0e2727..55403b9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Mon Oct 18 21:16:06 1999 Fred Fish <fnf@be.com> + + * tm.texi (CC1PLUS_SPEC): Make it clear in the docs that CC1_SPEC is + used by both cc1 and cc1plus. + Thu Oct 28 10:00:48 1999 Nick Clifton <nickc@cygnus.com> * config/arm/arm.c: Initialise arm_structure_size_boundary to diff --git a/gcc/tm.texi b/gcc/tm.texi index c11a354..96ebf81 100644 --- a/gcc/tm.texi +++ b/gcc/tm.texi @@ -153,6 +153,9 @@ pass to @code{cc1plus}. It can also specify how to translate options you give to GCC into options for GCC to pass to the @code{cc1plus}. Do not define this macro if it does not need to do anything. +Note that everything defined in CC1_SPEC is already passed to +@code{cc1plus} so there is no need to duplicate the contents of +CC1_SPEC in CC1PLUS_SPEC. @findex ASM_SPEC @item ASM_SPEC |