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 /test/example/c-api-kitchen-sink.c | |
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 'test/example/c-api-kitchen-sink.c')
-rw-r--r-- | test/example/c-api-kitchen-sink.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/example/c-api-kitchen-sink.c b/test/example/c-api-kitchen-sink.c index 0158bd73d..a55862c2c 100644 --- a/test/example/c-api-kitchen-sink.c +++ b/test/example/c-api-kitchen-sink.c @@ -1226,14 +1226,6 @@ void test_nonvalid() { } } -void test_tracing() { - BinaryenSetAPITracing(1); - test_core(); - test_relooper(); - test_types(); - BinaryenSetAPITracing(0); -} - void test_color_status() { int i; @@ -1332,8 +1324,6 @@ void test_for_each() { } int main() { - // Tracing must be first so it starts with a fresh set of interned types - test_tracing(); test_types(); test_features(); test_core(); |