llvm-capstone/clang/test/Preprocessor/macro_expand.c
Dmitri Gribenko f079de0a08 FileCheck'ize tests
llvm-svn: 173484
2013-01-25 20:34:08 +00:00

22 lines
312 B
C

// RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
#define X() Y
#define Y() X
A: X()()()
// CHECK: {{^}}A: Y{{$}}
// PR3927
#define f(x) h(x
#define for(x) h(x
#define h(x) x()
B: f(f))
C: for(for))
// CHECK: {{^}}B: f(){{$}}
// CHECK: {{^}}C: for(){{$}}
// rdar://6880648
#define f(x,y...) y
f()