diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-04-30 21:43:12 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-04-30 21:43:12 +0000 |
commit | ed46c60b66d0b652dce7bd1f5c96774970dbc1de (patch) | |
tree | c8b59a7b80a358aa8ba0c3bd5b5ad6d9a4a76587 /gcc/cppmain.c | |
parent | 4896abfd9d182eb84f9654661e156c27f2bd844b (diff) | |
download | ppe42-gcc-ed46c60b66d0b652dce7bd1f5c96774970dbc1de.tar.gz ppe42-gcc-ed46c60b66d0b652dce7bd1f5c96774970dbc1de.zip |
* cppmain.c (main): Remove commented-out code that used PARSE_GETC.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9553 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cppmain.c')
-rw-r--r-- | gcc/cppmain.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc/cppmain.c b/gcc/cppmain.c index 32131720c93..d78bf89f269 100644 --- a/gcc/cppmain.c +++ b/gcc/cppmain.c @@ -75,13 +75,6 @@ main (argc, argv) for (;;) { -#if 0 - int ch = PARSE_GETC (&parse_in); - if (ch < 0) - break; - if (! opts->no_output) - putchar (ch); -#else enum cpp_token kind; if (! opts->no_output) { @@ -91,7 +84,6 @@ main (argc, argv) kind = cpp_get_token (&parse_in); if (kind == CPP_EOF) break; -#endif } cpp_finish (&parse_in); |