repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* testsuite/libgomp.fortran/vla7.f90: Add -w to options.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
nested-func-4.c
blob
30826d885a6afafb39c4bc9836bdd812b71dcce3
1
/* { dg-do run } */
2
/* { dg-options "-pg" } */
3
/* { dg-options "-pg -static" { target hppa*-*-hpux* } } */
4
/* { dg-require-profiling "-pg" } */
5
6
extern
void
abort
(
void
);
7
8
void
foo
(
int
i
)
9
{
10
void
bar
(
void
)
11
{
12
if
(
i
!=
2
)
13
abort
();
14
}
15
16
bar
();
17
}
18
19
int
main
(
void
)
20
{
21
foo
(
2
);
22
return
0
;
23
}