summaryrefslogtreecommitdiff
path: root/tests/20optimizer_optimizations/abscosh
blob: 6cf480bd9786376667e4229d342ccc919993fd3b (plain)
1
2
3
4
5
6
7
8
9
T=d ld f mf cd cf cld
V=x
R=-1,1,1
F=cosh(sqrt(cbrt(x^6))) + sqrt(cbrt(x^6))
C=fp_cosh(fp_abs(x)) + fp_abs(x)

# sqrt(cbrt(x^6)) produces abs(x) through fpoptimizer.
# We cannot use abs(x) directly, because
# then bytecode optimizer would take it.