Skip to content

Commit

Permalink
[MERGE #2791 @Krovatkin] fix uint16_t bbrk on wasm.simd branch
Browse files Browse the repository at this point in the history
Merge pull request #2791 from Krovatkin:wasm-simd-collab
  • Loading branch information
Cellule committed Apr 11, 2017
2 parents 5e21fbd + 38ec30d commit 37a8368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/WasmReader/WasmBinaryReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ WasmOp WasmBinaryReader::ReadOpCode()
ThrowDecodingError(_u("WebAssembly SIMD support is not enabled"));
}

uint16_t offset = (op - wbExtended + 1) * 256;
uint16 offset = (op - wbExtended + 1) * 256;
op = (WasmOp)*m_pc++;
++m_funcState.count;

Expand Down

0 comments on commit 37a8368

Please sign in to comment.