PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr71078-1-long-double.c
blob00fbba82805d13ba07c91bf2d534b4dff0878fab
1 /* { dg-do compile } */
2 /* { dg-require-effective-target large_long_double } */
3 /* { dg-require-effective-target c99_runtime } */
4 /* { dg-options "-O2 -ffast-math -fdump-tree-forwprop-details" } */
6 #include <math.h>
8 long double f3 (long double x)
10 long double t1 = fabsl (x);
11 long double t2 = x / t1;
12 return t2;
15 /* { dg-final { scan-tree-dump "__builtin_copysignl" "forwprop1" } } */