mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 14:47:53 +02:00
pas2js: fixed rtl.js
This commit is contained in:
commit
021bc2a424
2
compiler/utils/pas2js/dist/rtl.js
vendored
2
compiler/utils/pas2js/dist/rtl.js
vendored
@ -1096,7 +1096,7 @@ var rtl = {
|
||||
if (a<0) a += rtl.hiInt;
|
||||
if (b<=0) return a;
|
||||
if (b>54) return 0;
|
||||
var r = a * Mat.pow(2,b);
|
||||
var r = a * Math.pow(2,b);
|
||||
if (r <= rtl.hiInt) return r;
|
||||
return r % rtl.hiInt;
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user