diff options
author | Daniel Wirtz <dcode@dcode.io> | 2020-04-20 23:01:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-20 14:01:26 -0700 |
commit | 483d759230f4693abfca3a74a97b1c1db6d2a0d6 (patch) | |
tree | c37b39802b9e5791abb3e329b88ba7185557de49 /test/passes/precompute_all-features.wast | |
parent | 1dc820c913712a2c50d05caee77e90a7ec49d2e1 (diff) | |
download | binaryen-483d759230f4693abfca3a74a97b1c1db6d2a0d6.tar.gz binaryen-483d759230f4693abfca3a74a97b1c1db6d2a0d6.tar.bz2 binaryen-483d759230f4693abfca3a74a97b1c1db6d2a0d6.zip |
Refactor expression runner so it can be used via the C and JS APIs (#2702)
Refactors most of the precompute pass's expression runner into its
base class so it can also be used via the C and JS APIs. Also adds
the option to populate the runner with known constant local and global
values upfront, and remembers assigned intermediate values as well
as traversing into functions if requested.
Diffstat (limited to 'test/passes/precompute_all-features.wast')
-rw-r--r-- | test/passes/precompute_all-features.wast | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/passes/precompute_all-features.wast b/test/passes/precompute_all-features.wast index 2a59ea290..bbe984704 100644 --- a/test/passes/precompute_all-features.wast +++ b/test/passes/precompute_all-features.wast @@ -376,6 +376,13 @@ ) ) ) + (func $loop-precompute (result i32) + (block $block (result i32) + (loop $loop + (br $block (i32.const 1)) + ) + ) + ) ;; Check if Precompute pass does not crash on reference types (func $reftype-test (result nullref) |