diff options
Diffstat (limited to 'clang/test/CodeGen/include/debug-info-macro.h')
-rw-r--r-- | clang/test/CodeGen/include/debug-info-macro.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/clang/test/CodeGen/include/debug-info-macro.h b/clang/test/CodeGen/include/debug-info-macro.h new file mode 100644 index 00000000000..f71d5c3343d --- /dev/null +++ b/clang/test/CodeGen/include/debug-info-macro.h @@ -0,0 +1,12 @@ + +#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 |