Commit 1519594d by Per Bothner

cppexp.c (cpp_reader): Test for '#' (start of assertion) *after* skipping hspace, not before.

* cppexp.c (cpp_reader):  Test for '#' (start of assertion) *after*
skipping hspace, not before.

From-SVN: r9687
parent bc9cc286
......@@ -287,13 +287,13 @@ cpp_reader *pfile;
retry:
old_written = CPP_WRITTEN (pfile);
cpp_skip_hspace (pfile);
c = CPP_BUF_PEEK (CPP_BUFFER (pfile));
if (c == '#')
return parse_number (pfile,
cpp_read_check_assertion (pfile) ? "1" : "0", 1);
old_written = CPP_WRITTEN (pfile);
cpp_skip_hspace (pfile);
if (c == '\n')
{
op.op = 0;
......
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