diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/debug/dwarf2-2.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/debug/dwarf2-2.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/testsuite/gcc.dg/debug/dwarf2-2.c b/gcc/testsuite/gcc.dg/debug/dwarf2-2.c deleted file mode 100644 index aa6778fde1..0000000000 --- a/gcc/testsuite/gcc.dg/debug/dwarf2-2.c +++ /dev/null @@ -1,18 +0,0 @@ -/* { dg-do compile } */ - -/* Copyright (C) 2000 Free Software Foundation */ -/* Contributed by Alexandre Oliva <aoliva@redhat.com> */ - -inline double fx (double x) -{ - return 3 * x; -} - -int -main () -{ - double a = 0, fx (double), foo (); - fx (a); - if (a != 3) - foo (); -} |