summaryrefslogtreecommitdiff
path: root/tests/10optimizer_bytecode/cmp_powx_n_n
blob: 369ce550e979d2cc15a033ac789e440d781f0395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
T=d f ld
V=x
R=-36,36,1
F=1*(((-2.051)^x)=((-1.061)^x)) +\
  2*(((-2.051)^x)<((-1.061)^x)) +\
  4*(((-2.051)^x)<=((-1.061)^x)) +\
  8*(((-2.051)^x)>((-1.061)^x)) +\
  16*(((-2.051)^x)>=((-1.061)^x)) +\
  32*(((-2.051)^x)!=((-1.061)^x))
C=1*fp_equal(fp_pow(-2.051,x),fp_pow(-1.061,x)) +\
  2*fp_less(fp_pow(-2.051,x),fp_pow(-1.061,x)) +\
  4*fp_lessOrEq(fp_pow(-2.051,x),fp_pow(-1.061,x)) +\
  8*fp_greater(fp_pow(-2.051,x),fp_pow(-1.061,x)) +\
  16*fp_greaterOrEq(fp_pow(-2.051,x),fp_pow(-1.061,x)) +\
  32*fp_nequal(fp_pow(-2.051,x),fp_pow(-1.061,x))