+2020-02-04 Jakub Jelinek <jakub@redhat.com>
+
+ PR preprocessor/93545
+ * c-c++-common/cpp/pr88974.c: Expect another diagnostics during error
+ recovery.
+ * c-c++-common/cpp/pr93545-1.c: New test.
+ * c-c++-common/cpp/pr93545-2.c: New test.
+ * c-c++-common/cpp/pr93545-3.c: New test.
+ * c-c++-common/cpp/pr93545-4.c: New test.
+
2020-02-04 Iain Sandoe <iain@sandoe.co.uk>
* g++.dg/coroutines/coro-missing-promise.C: New test.
+2020-02-04 Jakub Jelinek <jakub@redhat.com>
+
+ PR preprocessor/93545
+ * macro.c (cpp_get_token_no_padding): New function.
+ (builtin_has_include): Use it instead of cpp_get_token. Don't check
+ SEEN_EOL.
+
2020-02-01 Andrew Burgess <andrew.burgess@embecosm.com>
* configure: Regenerate.
from macro expansion. */
unsigned num_macro_tokens_counter = 0;
+/* Wrapper around cpp_get_token to skip CPP_PADDING tokens
+ and not consume CPP_EOF. */
+static const cpp_token *
+cpp_get_token_no_padding (cpp_reader *pfile)
+{
+ for (;;)
+ {
+ const cpp_token *ret = cpp_peek_token (pfile, 0);
+ if (ret->type == CPP_EOF)
+ return ret;
+ ret = cpp_get_token (pfile);
+ if (ret->type != CPP_PADDING)
+ return ret;
+ }
+}
+
/* Handle meeting "__has_include" builtin macro. */
static int
int result = 0;
pfile->state.angled_headers = true;
- const cpp_token *token = cpp_get_token (pfile);
+ const cpp_token *token = cpp_get_token_no_padding (pfile);
bool paren = token->type == CPP_OPEN_PAREN;
if (paren)
- token = cpp_get_token (pfile);
+ token = cpp_get_token_no_padding (pfile);
else
cpp_error (pfile, CPP_DL_ERROR,
"missing '(' before \"%s\" operand", NODE_NAME (op));
XDELETEVEC (fname);
}
- if (paren && !SEEN_EOL () && cpp_get_token (pfile)->type != CPP_CLOSE_PAREN)
+ if (paren
+ && cpp_get_token_no_padding (pfile)->type != CPP_CLOSE_PAREN)
cpp_error (pfile, CPP_DL_ERROR,
"missing ')' after \"%s\" operand", NODE_NAME (op));