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 e6fee62e..87879856 100644
--- a/src/library.js
+++ b/src/library.js
@@ -3913,6 +3913,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_);
},