Skip to content

Commit

Permalink
Bug 1860906 - Serialize CodeRangeUnwindInfos. r=rhunt
Browse files Browse the repository at this point in the history
  • Loading branch information
yurydelendik committed Oct 30, 2023
1 parent 4a5f6cb commit 009991a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/jit-test/tests/wasm/tail-calls/directives.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
|jit-test| --wasm-tail-calls; test-also=--wasm-compiler=baseline; test-also=--wasm-compiler=ion; skip-if: !wasmTailCallsEnabled(); include:wasm.js
|jit-test| --wasm-tail-calls; test-also=--wasm-compiler=baseline; test-also=--wasm-compiler=ion; test-also=--wasm-test-serialization; skip-if: !wasmTailCallsEnabled(); include:wasm.js
1 change: 1 addition & 0 deletions js/src/wasm/WasmSerialize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1041,6 +1041,7 @@ CoderResult CodeMetadataTier(Coder<mode>& coder,
MOZ_TRY(CodePodVector(coder, &item->funcExports));
MOZ_TRY(CodeStackMaps(coder, &item->stackMaps, codeStart));
MOZ_TRY(CodePodVector(coder, &item->tryNotes));
MOZ_TRY(CodePodVector(coder, &item->codeRangeUnwindInfos));
return Ok();
}

Expand Down

0 comments on commit 009991a

Please sign in to comment.