teak-llvm/clang/test/CodeGen/Inputs/debug-info-macro.h
Richard Trieu f11ab87ba3 Move test include file from include/ to Inputs/
The Inputs/ directory is the recommended location for extra files for test
cases.  No functional change.

llvm-svn: 294815
2017-02-11 00:52:01 +00:00

13 lines
142 B
C

#ifdef D1
/*Line 3*/ #define A(x, y, z) (x)
#endif
#ifdef D2
/*Line 7*/ #define A(x, y, z) (y)
#endif
#ifdef A
/*Line 11*/ #undef A
#endif