diff options
author | Chris Lattner <sabre@nondot.org> | 2008-05-05 20:07:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-05-05 20:07:41 +0000 |
commit | 98ed49f3709f48d6abe1bc8deb418d0af89b8014 (patch) | |
tree | f5247869c18f5b9ffee1e39f97c3cfcfb6125778 /test/Preprocessor/expr_invalid_tok.c | |
parent | 46b55e56d029aec699fc2701e43d70264da9ecd8 (diff) | |
download | clang-98ed49f3709f48d6abe1bc8deb418d0af89b8014.tar.gz |
Fix a few more bugs in preprocessor expressions w.r.t. ?:. Now I
think it is really right. :) This fixes PR2284.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50665 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Preprocessor/expr_invalid_tok.c')
-rw-r--r-- | test/Preprocessor/expr_invalid_tok.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Preprocessor/expr_invalid_tok.c b/test/Preprocessor/expr_invalid_tok.c index 2918bc6536..82bfca36b8 100644 --- a/test/Preprocessor/expr_invalid_tok.c +++ b/test/Preprocessor/expr_invalid_tok.c @@ -1,5 +1,6 @@ // RUN: not clang -E %s 2>&1 | grep 'invalid token at start of a preprocessor expression' // RUN: not clang -E %s 2>&1 | grep 'token is not a valid binary operator in a preprocessor subexpression' +// RUN: not clang -E %s 2>&1 | grep ':14: error: expected end of line in preprocessor expression' // PR2220 #if 1 * * 2 @@ -8,3 +9,7 @@ #if 4 [ 2 #endif + +// PR2284 - The constant-expr production does not including comma. +#if 1 ? 2 : 0, 1 +#endif |