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
2015-05-04 Sandra Loosemore <sandra@codesourcery.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr46255.c
blob
3a1639085de36db9a7d6d6e3587be9016327450b
1
/* PR debug/46255 */
2
/* { dg-do compile } */
3
/* { dg-require-profiling "-fprofile-generate" } */
4
/* { dg-options "-fcompare-debug -fprofile-generate -O" } */
5
6
int
bar
(
void
);
7
8
void
9
foo
(
int
i
)
10
{
11
while
(
i
)
12
i
=
bar
();
13
}