2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 %s -E | FileCheck %s
|
2006-07-16 05:06:48 +08:00
|
|
|
|
|
|
|
#define foo(x) bar x
|
|
|
|
foo(foo) (2)
|
2009-12-14 12:57:53 +08:00
|
|
|
// CHECK: bar foo (2)
|
2006-07-19 14:34:41 +08:00
|
|
|
|
|
|
|
#define m(a) a(w)
|
|
|
|
#define w ABCD
|
2009-12-14 12:57:53 +08:00
|
|
|
m(m)
|
|
|
|
// CHECK: m(ABCD)
|
2009-12-14 13:00:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-12-14 13:03:13 +08:00
|
|
|
// rdar://7466570 PR4438, PR5163
|
2009-12-14 13:00:18 +08:00
|
|
|
|
|
|
|
// We should get '42' in the argument list for gcc compatibility.
|
|
|
|
#define A 1
|
|
|
|
#define B 2
|
|
|
|
#define C(x) (x + 1)
|
|
|
|
|
|
|
|
X: C(
|
|
|
|
#ifdef A
|
|
|
|
#if A == 1
|
|
|
|
#if B
|
|
|
|
42
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
)
|
|
|
|
// CHECK: X: (42 + 1)
|