diff options
author | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-05-17 19:19:02 +0000 |
---|---|---|
committer | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-05-17 19:19:02 +0000 |
commit | 4a7ea892fcd76a0036b3f1c320ede4b6cde5a638 (patch) | |
tree | f51262cec219be1181c187b92938d9a4a82447fa | |
parent | 78e0edfbd2f9e6372b1787c5bc021a7648dae3f3 (diff) | |
download | ppe42-gcc-4a7ea892fcd76a0036b3f1c320ede4b6cde5a638.tar.gz ppe42-gcc-4a7ea892fcd76a0036b3f1c320ede4b6cde5a638.zip |
2006-05-17 H.J. Lu <hongjiu.lu@intel.com>
* config/arm/arm.opt (target_fpe_name): Remove VarExists.
* config/rs6000/rs6000.opt (TARGET_NO_FP_IN_TOC): Likewise.
* doc/options.texi (VarExists): Updated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@113871 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/config/arm/arm.opt | 2 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.opt | 2 | ||||
-rw-r--r-- | gcc/doc/options.texi | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/arm/arm.opt b/gcc/config/arm/arm.opt index ac497d96186..8f85ffb050f 100644 --- a/gcc/config/arm/arm.opt +++ b/gcc/config/arm/arm.opt @@ -77,7 +77,7 @@ Target RejectNegative Joined Var(target_float_abi_name) Specify if floating point hardware should be used mfp= -Target RejectNegative Joined Undocumented Var(target_fpe_name) VarExists +Target RejectNegative Joined Undocumented Var(target_fpe_name) ;; Now ignored. mfpe diff --git a/gcc/config/rs6000/rs6000.opt b/gcc/config/rs6000/rs6000.opt index 081d981da92..8ff390d6edc 100644 --- a/gcc/config/rs6000/rs6000.opt +++ b/gcc/config/rs6000/rs6000.opt @@ -144,7 +144,7 @@ Target Report RejectNegative Var(TARGET_NO_FP_IN_TOC) Do not place floating point constants in TOC mfp-in-toc -Target Report RejectNegative Var(TARGET_NO_FP_IN_TOC,0) VarExists +Target Report RejectNegative Var(TARGET_NO_FP_IN_TOC,0) Place floating point constants in TOC mno-sum-in-toc diff --git a/gcc/doc/options.texi b/gcc/doc/options.texi index 3afb3c11c21..05fa05b5323 100644 --- a/gcc/doc/options.texi +++ b/gcc/doc/options.texi @@ -169,8 +169,8 @@ The variable specified by the @code{Var} property already exists. No definition should be added to @file{options.c} in response to this option record. -You should use this property if an earlier option has already declared -the variable or if the variable is declared outside @file{options.c}. +You should use this property only if the variable is declared outside +@file{options.c}. @item Init(@var{value}) The variable specified by the @code{Var} property should be statically |