blob: b74d2034f5b1092e21275f1ec6c6a581e16d04b1 [file] [log] [blame]
// PR tree-optimization/105235
// { dg-do compile }
// { dg-options "-O -fno-tree-dominator-opts -fexceptions -fnon-call-exceptions -fno-tree-fre" }
struct S { ~S (); };
double
foo (double d)
{
S s;
return __builtin_ilogbl (d) + __builtin_sinl (d);
}