summaryrefslogtreecommitdiff
path: root/tests/10optimizer_bytecode/ge0_neg
blob: 6bb164459ab9157396b4b860e3fb3364d210d91c (plain)
1
2
3
4
5
6
7
8
9
10
11
T=d f ld
V=x
R=-1,1,0.25
F=(sin(x) >= 0) + \
  2*(0 <= sin(x)) + \
  4*(sin(x) <= 0) + \
  8*(0 >= sin(x))
C=fp_greaterOrEq(fp_sin(x), 0) + \
  2*fp_lessOrEq(0, fp_sin(x)) + \
  4*fp_lessOrEq(fp_sin(x), 0) + \
  8*fp_greaterOrEq(0, fp_sin(x))