forked from OSchip/llvm-project
Added testcases for -Wdisabled-macro-expansion.
llvm-svn: 147473
This commit is contained in:
parent
fcc041eabf
commit
9f3d1ac419
|
@ -0,0 +1,27 @@
|
|||
// RUN: %clang_cc1 %s -E -Wdisabled-macro-expansion -verify
|
||||
|
||||
#define p p
|
||||
|
||||
#define a b
|
||||
#define b a
|
||||
|
||||
#define f(a) a
|
||||
|
||||
#define g(b) a
|
||||
|
||||
#define h(x) i(x)
|
||||
#define i(y) i(y)
|
||||
|
||||
#define c(x) x(0)
|
||||
|
||||
p // expected-warning {{recursive macro}}
|
||||
|
||||
a // expected-warning {{recursive macro}}
|
||||
|
||||
f(2)
|
||||
|
||||
g(3) // expected-warning {{recursive macro}}
|
||||
|
||||
h(0) // expected-warning {{recursive macro}}
|
||||
|
||||
c(c) // expected-warning {{recursive macro}}
|
Loading…
Reference in New Issue