From: Neil Booth Date: Fri, 24 May 2002 19:26:30 +0000 (+0000) Subject: re PR preprocessor/6780 (Incorrect diagnosis of token pasting) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3620711b75a8b664a7ff1f6fe96ddd52fd2d8a0d;p=gcc.git re PR preprocessor/6780 (Incorrect diagnosis of token pasting) PR preprocessor/6780 * cppmacro.c (enter_macro_context): Clear state.angled_headers. testsuite: * gcc.dg/cpp/paste12.c: New test. From-SVN: r53851 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 29027a11361..cfcc5fbeb04 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-05-24 Neil Booth + + PR preprocessor/6780 + * cppmacro.c (enter_macro_context): Clear state.angled_headers. + 2002-05-24 Jim Blandy * dwarf2out.c (dwarf2out_finish): Don't forget to emit a final diff --git a/gcc/cppmacro.c b/gcc/cppmacro.c index 40a9a078045..d154c0ccb85 100644 --- a/gcc/cppmacro.c +++ b/gcc/cppmacro.c @@ -660,6 +660,8 @@ enter_macro_context (pfile, node) /* The presence of a macro invalidates a file's controlling macro. */ pfile->mi_valid = false; + pfile->state.angled_headers = false; + /* Handle standard macros. */ if (! (node->flags & NODE_BUILTIN)) { diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ae26d864ae1..deabe47ee7a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2002-05-24 Neil Booth + + * gcc.dg/cpp/paste12.c: New test. + 2002-05-23 Neil Booth * g++.dg/parse/named_ops.C: New test. diff --git a/gcc/testsuite/gcc.dg/cpp/paste12.c b/gcc/testsuite/gcc.dg/cpp/paste12.c new file mode 100644 index 00000000000..e61ec51433c --- /dev/null +++ b/gcc/testsuite/gcc.dg/cpp/paste12.c @@ -0,0 +1,8 @@ +/* { dg-do preprocess } */ + +/* Test correct diagnostics when pasting in #include. + Source: PR preprocessor/6780. */ + +#define inc2(a,b) <##a.b> +#define INC(X) inc2(X,h) +#include INC(stdio) /* { dg-error "pasting \"<\" and \"stdio\" does not" } */