aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/debug/dwarf2-2.c
blob: aa6778fde16281ebc7353d97005125cc56dfc990 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { 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 ();
}