diff options
Diffstat (limited to 'test/Preprocessor/macro_fn.c')
-rw-r--r-- | test/Preprocessor/macro_fn.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/Preprocessor/macro_fn.c b/test/Preprocessor/macro_fn.c index fcdb90a..f21ef51 100644 --- a/test/Preprocessor/macro_fn.c +++ b/test/Preprocessor/macro_fn.c @@ -13,7 +13,8 @@ zero(1, 2, 3); /* expected-error {{too many arguments provided to function-li one() /* ok */ one(a) -one(a,) /* expected-error {{too many arguments provided to function-like macro invocation}} */ +one(a,) /* expected-error {{too many arguments provided to function-like macro invocation}} \ + expected-warning {{empty macro arguments are a C99 feature}}*/ one(a, b) /* expected-error {{too many arguments provided to function-like macro invocation}} */ two() /* expected-error {{too few arguments provided to function-like macro invocation}} */ @@ -25,7 +26,7 @@ two( , /* expected-warning {{empty macro arguments are a C99 feature}} */ , /* expected-warning {{empty macro arguments are a C99 feature}} \ expected-error {{too many arguments provided to function-like macro invocation}} */ - ) + ) /* expected-warning {{empty macro arguments are a C99 feature}} */ two(,) /* expected-warning 2 {{empty macro arguments are a C99 feature}} */ |