aboutsummaryrefslogtreecommitdiff
path: root/src/library.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/library.js')
-rw-r--r--src/library.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/library.js b/src/library.js
index 9c25ebce..c58b6e6c 100644
--- a/src/library.js
+++ b/src/library.js
@@ -883,6 +883,8 @@ var Library = {
llvm_sqrt_f64: 'Math.sqrt',
llvm_pow_f32: 'Math.pow',
llvm_pow_f64: 'Math.pow',
+ llvm_log_f32: 'Math.log',
+ llvm_log_f64: 'Math.log',
ldexp: function(x, exp_) {
return x*Math.pow(2, exp_);
},