Skip to content

Tags: paliwalgaurav/wabt

Tags

1.0.6

Toggle 1.0.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Require reserved instruction bytes to be one byte (WebAssembly#922)

The spec requires that the reserved bytes in `call_indirect`,
`memory.grow`, and `memory.size` to be one zero byte. This means that we
cannot accept `0x80 0x00`, or other "long" LEB128 encodings of zero.

1.0.5

Toggle 1.0.5's commit message
[appveyor] Another try at getting deploys working

1.0.4

Toggle 1.0.4's commit message
[appveyor] Maybe fix deploy issues

1.0.3

Toggle 1.0.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Some fixes for binary releases (WebAssembly#879)

* Create the artifacts before they are packaged (`before_deploy` happens
afterward)
* MacOS doesn't have sha256, so use python

1.0.2

Toggle 1.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Binary releases for travis/appveyor (WebAssembly#876)

Fixes WebAssembly#875, maybe.

1.0.1

Toggle 1.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Read and write module names in the names section (WebAssembly#831)

1.0.0

Toggle 1.0.0's commit message
Fix type-checking bug in br_if w/ polymorphic stack (WebAssembly#589)

Similar to issue WebAssembly#586, it is necessary to pop and re-push the type on
the top of the stack when validating br_if, because otherwise the
concerete type is not pushed on the stack (i.e. the top remains
polymorphic).

Fixes WebAssembly#588.

binary_0xd

Toggle binary_0xd's commit message
Change NULL -> nullptr (WebAssembly#315)

Also switch to using C++11.

binary_0xc

Toggle binary_0xc's commit message
Update tests syntax to new flat syntax (WebAssembly#180)

* more converted tests
* more tests plus fix to broken test
* fixed broken tests
* converted more tests and fixed issues with previously submitted 'interp/binary.txt' and 'nested-if.txt'

binary_0xb

Toggle binary_0xb's commit message
Use `--recursive` in clone example to make easier. (WebAssembly#114)