diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-12 09:25:59 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-12 09:25:59 +0000 |
commit | 46139d3fd31ce13b3aff9c67148fb44272943557 (patch) | |
tree | 8c96d7cea97a044e3c22146d563038821cbac200 /gcc/testsuite/gcc.dg/cpp | |
parent | acc511204707c088af1dfaa7427c0626df9712d2 (diff) | |
download | gcc-46139d3fd31ce13b3aff9c67148fb44272943557.tar.gz |
PR preprocessor/28709
* macro.c (paste_tokens): Do error reporting here, use BUF with the
spelled LHS token as opposed to spelling it again.
(paste_all_tokens): Don't report errors here, just break on failure.
* gcc.dg/cpp/paste14.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@117664 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.dg/cpp')
-rw-r--r-- | gcc/testsuite/gcc.dg/cpp/paste14.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/cpp/paste14.c b/gcc/testsuite/gcc.dg/cpp/paste14.c new file mode 100644 index 00000000000..ec243c2326f --- /dev/null +++ b/gcc/testsuite/gcc.dg/cpp/paste14.c @@ -0,0 +1,7 @@ +/* PR preprocessor/28709 */ +/* { dg-do preprocess } */ + +#define foo - ## >> +foo /* { dg-error "pasting \"-\" and \">>\"" } */ +#define bar = ## == +bar /* { dg-error "pasting \"=\" and \"==\"" } */ |