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
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
opt
/
pr60849.C
blob
52d8826b0c880b2d2bc2e7f92b24ebd23e59c92b
1
// { dg-do compile }
2
// { dg-options "-O2" }
3
4
int g;
5
6
extern "C" int isnan ();
7
8
void foo(float a) {
9
int (*xx)(...);
10
xx = isnan;
11
if (xx(a))
12
g++;
13
}