File tree 2 files changed +5
-0
lines changed 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -1398,10 +1398,14 @@ LibraryManager.library = {
1398
1398
llvm_sqrt_f64 : 'Math_sqrt' ,
1399
1399
llvm_pow_f32 : 'Math_pow' ,
1400
1400
llvm_pow_f64 : 'Math_pow' ,
1401
+ llvm_powi_f32 : 'Math_pow' ,
1402
+ llvm_powi_f64 : 'Math_pow' ,
1401
1403
llvm_log_f32 : 'Math_log' ,
1402
1404
llvm_log_f64 : 'Math_log' ,
1403
1405
llvm_exp_f32 : 'Math_exp' ,
1404
1406
llvm_exp_f64 : 'Math_exp' ,
1407
+ llvm_trunc_f64 : 'Math_trunc' ,
1408
+ llvm_floor_f64 : 'Math_floor' ,
1405
1409
1406
1410
round__asm : true ,
1407
1411
round__sig : 'dd' ,
Original file line number Diff line number Diff line change @@ -1764,6 +1764,7 @@ var Math_imul = Math.imul;
1764
1764
var Math_fround = Math . fround ;
1765
1765
var Math_min = Math . min ;
1766
1766
var Math_clz32 = Math . clz32 ;
1767
+ var Math_trunc = Math . trunc ;
1767
1768
1768
1769
// A counter of dependencies for calling run(). If we need to
1769
1770
// do asynchronous work before running, increment this and
You can’t perform that action at this time.
0 commit comments