Merge branch 'master' into bors

This commit is contained in:
Mackenzie Clark 2019-03-08 14:38:18 -08:00 committed by GitHub
commit a08b2f236b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ build_script:
test_script: test_script:
- cargo test --manifest-path lib/spectests/Cargo.toml --features clif - cargo test --manifest-path lib/spectests/Cargo.toml --features clif
after_build: before_deploy:
- cd ./src/installer - cd ./src/installer
- iscc wasmer.iss - iscc wasmer.iss
- copy /y .\WasmerInstaller.exe ..\..\WasmerInstaller-%APPVEYOR_REPO_TAG_NAME%.exe - copy /y .\WasmerInstaller.exe ..\..\WasmerInstaller-%APPVEYOR_REPO_TAG_NAME%.exe

View File

@ -73,7 +73,7 @@ int main()
argument_one.tag = WASM_I32; argument_one.tag = WASM_I32;
argument_one.value.I32 = 7; argument_one.value.I32 = 7;
// Value of argumen #2 is `8i32`. // Value of argument #2 is `8i32`.
wasmer_value_t argument_two; wasmer_value_t argument_two;
argument_two.tag = WASM_I32; argument_two.tag = WASM_I32;
argument_two.value.I32 = 8; argument_two.value.I32 = 8;