repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr54563.C
blob
2980320f66369ed868b5766702abdf0e1ae455c2
1
// PR tree-optimization/54563
2
// { dg-do compile }
3
4
extern "C" float powf (float, float);
5
struct S { ~S (); };
6
double bar ();
7
double x;
8
9
void
10
foo ()
11
{
12
S s;
13
x = powf (bar (), 2.);
14
}