diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-15 15:49:28 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-15 15:49:28 +0000 |
commit | 624a75705f2258e42c7edb35107fe4eb1ea29ce9 (patch) | |
tree | 6253525ac637d62e9809618539bdf01c3ffe17a4 /gcc/gcc.c | |
parent | 24f9a6601f0c8e807f692477aec56280400dbf00 (diff) | |
download | gcc-624a75705f2258e42c7edb35107fe4eb1ea29ce9.tar.gz |
* gcc.c (cpp_options): Pass -fno-operator-names.
* cpplib.h (struct cpp_options): Add operator_names.
* cppinit.c (cpp_create_reader): Initialize it.
(initialize_builtins): If -fno-operator-names, don't add
C++ alternate operator names.
(COMMAND_LINE_OPTIONS): Add -fno-operator-names.
(cpp_handle_option): Clear operator_names.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38288 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c index c607933ba92..242067a02c7 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -594,7 +594,7 @@ static const char *cpp_options = %{!ffreestanding:%{!fno-hosted:-D__STDC_HOSTED__=1}}\ %{fshow-column} %{fno-show-column}\ %{fleading-underscore} %{fno-leading-underscore}\ - %{ftabstop=*} %{remap}\ + %{fno-operator-names} %{ftabstop=*} %{remap}\ %{g*} %{W*} %{w} %{pedantic*} %{H} %{d*} %C %{D*&U*&A*} %{i*} %Z %i\ %{E:%W{o*}}%{M:%W{o*}}%{MM:%W{o*}}"; |