diff options
Diffstat (limited to 'src/js')
-rw-r--r-- | src/js/binaryen.js-post.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/js/binaryen.js-post.js b/src/js/binaryen.js-post.js index 057252f78..4e673ab4b 100644 --- a/src/js/binaryen.js-post.js +++ b/src/js/binaryen.js-post.js @@ -3031,13 +3031,13 @@ Module['setOneCallerInlineMaxSize'] = function(size) { }; // Gets the value which allow inline functions that are not "lightweight". -Module['getAllowHeavyweight'] = function() { - return Boolean(Module['_BinaryenGetAllowHeavyweight']()); +Module['getAllowInliningFunctionsWithLoops'] = function() { + return Boolean(Module['_BinaryenGetAllowInliningFunctionsWithLoops']()); }; // Sets the value which allow inline functions that are not "lightweight". -Module['setAllowHeavyweight'] = function(value) { - Module['_BinaryenSetAllowHeavyweight'](value); +Module['setAllowInliningFunctionsWithLoops'] = function(value) { + Module['_BinaryenSetAllowInliningFunctionsWithLoops'](value); }; // Expression wrappers |