721a9f8e29
From-SVN: r36000
19 lines
298 B
C
19 lines
298 B
C
/* { dg-do compile } */
|
|
/* { dg-options "-O -g" } */
|
|
|
|
/* Copyright (C) 2000 Free Software Foundation */
|
|
/* Contributed by Alexandre Oliva <aoliva@redhat.com> */
|
|
|
|
inline double fx (double x)
|
|
{
|
|
return 3 * x;
|
|
}
|
|
|
|
main ()
|
|
{
|
|
double a = 0, fx (double), foo ();
|
|
fx (a);
|
|
if (a != 3)
|
|
foo ();
|
|
}
|