diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2019-04-12 18:27:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-12 18:27:13 -0700 |
commit | 9495b338121140d585648d64fb99e8ef7f92f867 (patch) | |
tree | 57418b1f685a4a5a43ee291759f64e9a763b1245 /test/spec/globals.wast | |
parent | 883d14de7157950063f74b81658d00df0d53be8d (diff) | |
download | binaryen-9495b338121140d585648d64fb99e8ef7f92f867.tar.gz binaryen-9495b338121140d585648d64fb99e8ef7f92f867.tar.bz2 binaryen-9495b338121140d585648d64fb99e8ef7f92f867.zip |
Move features from passOptions to Module (#2001)
This allows us to emit a (potentially modified) target features
section and conditionally emit other sections such as the DataCount
section based on the presence of features.
Diffstat (limited to 'test/spec/globals.wast')
-rw-r--r-- | test/spec/globals.wast | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/spec/globals.wast b/test/spec/globals.wast index 02ef4dc04..ca3100a64 100644 --- a/test/spec/globals.wast +++ b/test/spec/globals.wast @@ -52,26 +52,6 @@ ) (assert_invalid - (module (import "m" "a" (global (mut i32)))) - "mutable globals cannot be imported" -) - -(assert_invalid - (module (global (import "m" "a") (mut i32))) - "mutable globals cannot be imported" -) - -(assert_invalid - (module (global (mut f32) (f32.const 0)) (export "a" (global 0))) - "mutable globals cannot be exported" -) - -(assert_invalid - (module (global (export "a") (mut f32) (f32.const 0))) - "mutable globals cannot be exported" -) - -(assert_invalid (module (global f32 (f32.neg (f32.const 0)))) "constant expression required" ) |