aboutsummaryrefslogtreecommitdiff
path: root/test/Preprocessor/macro_paste_c_block_comment.c
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2012-06-13 19:02:56 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2012-06-13 19:02:56 +0000
commitc5f7459b2d60ad55ed2ab3cfd281d9c718f5a8df (patch)
treec22a849564903771cba8452681bb2741042c0ff5 /test/Preprocessor/macro_paste_c_block_comment.c
parent568eae48a4e19c0359cdcd2a33b8ec9812e4abbc (diff)
Fix issue where a token paste which forms a /* or // would discard the rest of
the input: token-pasting was producing a tok::eof. Patch by Andy Gibbs! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158412 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Preprocessor/macro_paste_c_block_comment.c')
-rw-r--r--test/Preprocessor/macro_paste_c_block_comment.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Preprocessor/macro_paste_c_block_comment.c b/test/Preprocessor/macro_paste_c_block_comment.c
index c690a4c7c9..92b2f60188 100644
--- a/test/Preprocessor/macro_paste_c_block_comment.c
+++ b/test/Preprocessor/macro_paste_c_block_comment.c
@@ -3,3 +3,6 @@
#define COMM / ## *
COMM // expected-error {{pasting formed '/*', an invalid preprocessing token}}
+// Demonstrate that an invalid preprocessing token
+// doesn't swallow the rest of the file...
+#error EOF // expected-error {{EOF}}