Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr54563.C
blob: 2980320f66369ed868b5766702abdf0e1ae455c2 [
file
] [
log
] [
blame
]
// PR tree-optimization/54563
// { dg-do compile }
extern
"C"
float
powf
(
float
,
float
);
struct
S
{
~
S
();
};
double
bar
();
double
x
;
void
foo
()
{
S s
;
x
=
powf
(
bar
(),
2.
);
}