-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
crucible-wasm: Adapt to new data segment format in Wasm 2.0
This bumps the `haskell-wasm` commit to SPY/haskell-wasm@32392dc and does the minimum amount of work needed to make `crucible-wasm` continue to compile after these changes. For now, we do not implement full support for Wasm 2.0's new data segment features, as that would require a non-trivial amount of work to support. See #1228.
- Loading branch information
1 parent
f7c697e
commit ee20b4d
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule haskell-wasm
updated
7 files
+2 −2 | src/Language/Wasm/Binary.hs | |
+1 −1 | src/Language/Wasm/Builder.hs | |
+3 −1 | src/Language/Wasm/Interpreter.hs | |
+36 −15 | src/Language/Wasm/Parser.y | |
+8 −2 | src/Language/Wasm/Structure.hs | |
+1 −1 | src/Language/Wasm/Validate.hs | |
+1 −1 | tests/Test.hs |