diff options
author | Daniel Wirtz <dcode@dcode.io> | 2020-05-09 02:44:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 17:44:23 -0700 |
commit | 98b1e6a64e49bbec03dad679bcb716fd79dc13e1 (patch) | |
tree | 1364bf44d22ec1d0991e5f271ca0ecdc34c40d9a /src/js | |
parent | f23bf9a4cd45b7ed03805f217f6c4f645a513822 (diff) | |
download | binaryen-98b1e6a64e49bbec03dad679bcb716fd79dc13e1.tar.gz binaryen-98b1e6a64e49bbec03dad679bcb716fd79dc13e1.tar.bz2 binaryen-98b1e6a64e49bbec03dad679bcb716fd79dc13e1.zip |
Remove C API tracing (#2841)
This feature was very useful in the early days of the C API,
but has not shown usefuless for quite a while, and has a
significant maintenance burden, so it it's makes sense to
remove it now.
Diffstat (limited to 'src/js')
-rw-r--r-- | src/js/binaryen.js-post.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/js/binaryen.js-post.js b/src/js/binaryen.js-post.js index 3bc0fa4a3..75d6bf401 100644 --- a/src/js/binaryen.js-post.js +++ b/src/js/binaryen.js-post.js @@ -3056,11 +3056,6 @@ Module['setOneCallerInlineMaxSize'] = function(size) { Module['_BinaryenSetOneCallerInlineMaxSize'](size); }; -// Enables or disables C-API tracing -Module['setAPITracing'] = function(on) { - return Module['_BinaryenSetAPITracing'](on); -}; - // Additional customizations Module['exit'] = function(status) { |