Fix für PHP codegen integer modulo calculation.

This commit is contained in:
Hans Raaf
2016-03-07 20:08:58 +01:00
parent e4e8ebd4a5
commit 5450c944d7

View File

@@ -472,6 +472,14 @@ proc arith(p: PProc, n: PNode, r: var TCompRes, op: TMagic) =
r.res = "intval($1 / $2)" % [x.rdLoc, y.rdLoc]
else:
arithAux(p, n, r, op, jsOps)
of mModI:
if p.target == targetPHP:
var x, y: TCompRes
gen(p, n.sons[1], x)
gen(p, n.sons[2], y)
r.res = "($1 % $2)" % [x.rdLoc, y.rdLoc]
else:
arithAux(p, n, r, op, jsOps)
of mShrI:
var x, y: TCompRes
gen(p, n.sons[1], x)