aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/debug/dwarf2/dwarf2-macro.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/debug/dwarf2/dwarf2-macro.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/debug/dwarf2/dwarf2-macro.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/debug/dwarf2/dwarf2-macro.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/debug/dwarf2/dwarf2-macro.c
deleted file mode 100644
index 4efb25e8c..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/debug/dwarf2/dwarf2-macro.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/* Test to make sure the mcaro info includes a start file command for the main source */
-/* { dg-do compile } */
-/* { dg-options "-g3 -gdwarf-2 -dA -fverbose-asm" } */
-/* { dg-final { scan-assembler "Start new file" } } */
-
-#define ADD(x) (M + x)
-
-int main (void)
-{
-#define N 28
-#define M 42
- return ADD(N);
-}