diff options
Diffstat (limited to 'test/Preprocessor/macro_space.c')
-rw-r--r-- | test/Preprocessor/macro_space.c | 36 |
1 files changed, 33 insertions, 3 deletions
diff --git a/test/Preprocessor/macro_space.c b/test/Preprocessor/macro_space.c index 8a47a3b..13e531f 100644 --- a/test/Preprocessor/macro_space.c +++ b/test/Preprocessor/macro_space.c @@ -1,6 +1,36 @@ // RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s -#define XX -! XX, +#define FOO1() +#define FOO2(x)x +#define FOO3(x) x +#define FOO4(x)x x +#define FOO5(x) x x +#define FOO6(x) [x] +#define FOO7(x) [ x] +#define FOO8(x) [x ] -// CHECK: {{^}}! ,{{$}} +#define TEST(FOO,x) FOO <FOO()> < FOO()> <FOO ()> <FOO( )> <FOO() > <FOO()x> <FOO() x> < FOO()x> + +TEST(FOO1,) +// CHECK: FOO1 <> < > <> <> < > <> < > < > + +TEST(FOO2,) +// CHECK: FOO2 <> < > <> <> < > <> < > < > + +TEST(FOO3,) +// CHECK: FOO3 <> < > <> <> < > <> < > < > + +TEST(FOO4,) +// CHECK: FOO4 < > < > < > < > < > < > < > < > + +TEST(FOO5,) +// CHECK: FOO5 < > < > < > < > < > < > < > < > + +TEST(FOO6,) +// CHECK: FOO6 <[]> < []> <[]> <[]> <[] > <[]> <[] > < []> + +TEST(FOO7,) +// CHECK: FOO7 <[ ]> < [ ]> <[ ]> <[ ]> <[ ] > <[ ]> <[ ] > < [ ]> + +TEST(FOO8,) +// CHECK: FOO8 <[ ]> < [ ]> <[ ]> <[ ]> <[ ] > <[ ]> <[ ] > < [ ]> |