summaryrefslogtreecommitdiff
path: root/test/DebugInfo/Inputs/dwarfdump-macro.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/DebugInfo/Inputs/dwarfdump-macro.cc')
-rw-r--r--test/DebugInfo/Inputs/dwarfdump-macro.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/DebugInfo/Inputs/dwarfdump-macro.cc b/test/DebugInfo/Inputs/dwarfdump-macro.cc
new file mode 100644
index 0000000000000..5abcb255c6c73
--- /dev/null
+++ b/test/DebugInfo/Inputs/dwarfdump-macro.cc
@@ -0,0 +1,11 @@
+#define M1 Value1
+#include "dwarfdump-macro.h"
+#define M2(x, y) ((x)+(y)* Value2)
+
+// Built with GCC
+// $ mkdir -p /tmp/dbginfo
+// $ cp dwarfdump-macro.cc /tmp/dbginfo
+// $ cp dwarfdump-macro.h /tmp/dbginfo
+// $ cp dwarfdump-macro-cmd.h /tmp/dbginfo
+// $ cd /tmp/dbginfo
+// $ g++ -c -g3 -O0 -DM3=Value3 -include dwarfdump-macro-cmd.h dwarfdump-macro.cc -o <output>