diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-08 21:09:20 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-08 21:09:20 +0000 |
commit | ecc35bdf9530ab94881d3f9e150029bf2335d599 (patch) | |
tree | e1be7e69b9f0b36cfc64fe2d9529b21cca2a4c00 /gcc/cpplib.c | |
parent | adc16aebb13a68129ecbbb51303518a667b1d1f1 (diff) | |
download | gcc-ecc35bdf9530ab94881d3f9e150029bf2335d599.tar.gz |
* emit-rtl.c (init_emit_once): Call INIT_EXPANDERS.
* cpplib.h: Protect from multiple inclusions.
* cpplib.c: Fix minor formatting problems.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22937 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpplib.c')
-rw-r--r-- | gcc/cpplib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c index 874a1759a50..da2f54a97f0 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -6511,7 +6511,7 @@ cpp_handle_option (pfile, argc, argv) case 't': if (!strcmp (argv[i], "-traditional")) { opts->traditional = 1; - opts->cplusplus_comments = 0; + opts->cplusplus_comments = 0; } else if (!strcmp (argv[i], "-trigraphs")) { if (!opts->chill) opts->no_trigraphs = 0; @@ -6816,7 +6816,7 @@ cpp_handle_option (pfile, argc, argv) opts->out_fname = ""; break; } /* else fall through into error */ - + default: return i; } |