OSDN Git Service

* gcc.dg/compare2.c (case 10): XFAIL.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / dwarf2-2.c
1 /* { dg-do compile } */
2 /* { dg-options "-O -g" } */
3
4 /* Copyright (C) 2000  Free Software Foundation  */
5 /* Contributed by Alexandre Oliva <aoliva@redhat.com> */
6
7 inline double fx (double x)
8 {
9   return 3 * x;
10 }
11
12 main ()
13 {
14   double a = 0, fx (double), foo ();
15   fx (a);
16   if (a != 3)
17     foo ();
18 }