diff options
Diffstat (limited to 'test/Preprocessor/dump_macros.c')
-rw-r--r-- | test/Preprocessor/dump_macros.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Preprocessor/dump_macros.c b/test/Preprocessor/dump_macros.c index b4d2906127..5908fec4b6 100644 --- a/test/Preprocessor/dump_macros.c +++ b/test/Preprocessor/dump_macros.c @@ -1,11 +1,11 @@ // RUN: clang-cc -E -dM %s -o - | FileCheck %s -strict-whitespace // Space at end even without expansion tokens -// CHECK: {{#define A[(]x[)] $}} +// CHECK: #define A(x) #define A(x) // Space before expansion list. -// CHECK: {{#define B[(]x,y[)] x y$}} +// CHECK: #define B(x,y) x y #define B(x,y)x y // No space in argument list. |