aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/library.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/library.js b/src/library.js
index e0489d44..18988de6 100644
--- a/src/library.js
+++ b/src/library.js
@@ -3760,6 +3760,8 @@ LibraryManager.library = {
llvm_pow_f64: 'Math.pow',
llvm_log_f32: 'Math.log',
llvm_log_f64: 'Math.log',
+ llvm_exp_f32: 'Math.exp',
+ llvm_exp_f64: 'Math.exp',
ldexp: function(x, exp_) {
return x*Math.pow(2, exp_);
},