repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
debug
/
dwarf2-2.c
blob
0c3cee1a3741f86d810518b749da1cf2c7c3bc17
1
/* { dg-do compile } */
2
3
/* Copyright (C) 2000 Free Software Foundation */
4
/* Contributed by Alexandre Oliva <aoliva@redhat.com> */
5
6
inline
double
fx
(
double
x
)
7
{
8
return
3
*
x
;
9
}
10
11
main
()
12
{
13
double
a
=
0
,
fx
(
double
),
foo
();
14
fx
(
a
);
15
if
(
a
!=
3
)
16
foo
();
17
}