Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
g++.dg
/
opt
/
pr79396.C
blob: 328c271358a3216632019f3f89922517e8331de1 [
file
] [
log
] [
blame
]
// PR middle-end/79396
// { dg-do compile }
// { dg-options "-fnon-call-exceptions -O2" }
// { dg-additional-options "-mfma" { target i?86-*-* x86_64-*-* } }
struct
A
{
A
();
~
A
();
};
float
foo
(
float
x
)
{
A a
;
return
__builtin_pow
(
x
,
2
)
+
2
;
}