Commit 75410dc3 by Per Bothner

* cppmain.c (main): Remove commented-out code that used PARSE_GETC.

From-SVN: r9553
parent 782331f4
...@@ -75,13 +75,6 @@ main (argc, argv) ...@@ -75,13 +75,6 @@ main (argc, argv)
for (;;) for (;;)
{ {
#if 0
int ch = PARSE_GETC (&parse_in);
if (ch < 0)
break;
if (! opts->no_output)
putchar (ch);
#else
enum cpp_token kind; enum cpp_token kind;
if (! opts->no_output) if (! opts->no_output)
{ {
...@@ -91,7 +84,6 @@ main (argc, argv) ...@@ -91,7 +84,6 @@ main (argc, argv)
kind = cpp_get_token (&parse_in); kind = cpp_get_token (&parse_in);
if (kind == CPP_EOF) if (kind == CPP_EOF)
break; break;
#endif
} }
cpp_finish (&parse_in); cpp_finish (&parse_in);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment