Unreviewed changes
1 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: src/builtins/ia32/builtins-ia32.cc
Insertions: 1, Deletions: 1.
@@ -3860,7 +3860,7 @@
Register target_stack = WasmFXResumeThrowDescriptor::GetRegisterParameter(0);
// The target stack may not have a frame yet. In that case, do not switch
// stacks and throw the exception immediately instead.
- __ cmp(Operand(target_stack, wasm::kStackFpOffset), Immediate(kNullAddress));
+ __ cmp(Operand(target_stack, wasm::kStackFpOffset), Immediate(0));
Label throw_;
__ j(equal, &throw_);
Register tag = WasmFXResumeThrowDescriptor::GetRegisterParameter(1);
```
Change information
Commit message:
[wasmfx] Fix cmp width in WasmFXResumeThrow
Use a full pointer comparison to check if the target FP is null, not a
Smi comparison.
R=clem...@chromium.org
Bug: 388533754
Change-Id: I26e9015cf9623894d0fcec15d501f0790cd222f2
Cr-Commit-Position: refs/heads/main@{#104568}
Files:
- M src/builtins/arm/builtins-arm.cc
- M src/builtins/arm64/builtins-arm64.cc
- M src/builtins/ia32/builtins-ia32.cc
- M src/builtins/x64/builtins-x64.cc
Change size: S
Delta: 4 files changed, 6 insertions(+), 7 deletions(-)
Branch: refs/heads/main
Submit Requirements:
Code-Review: +1 by Clemens Backes