Commit 393cf994 authored by Clemens Backes's avatar Clemens Backes Committed by V8 LUCI CQ

[liftoff] Use kSimd bailout reason consistently

Other places use the {kSimd} bailout reason for bailouts because of
missing CPU support for SIMD. We should do the same when encountering
SIMD locals or parameters.

R=thibaudm@chromium.org

Change-Id: I7ea6ff32927a035cdafe437d581a79f67ff0b30f
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3605243Reviewed-by: 's avatarThibaud Michaud <thibaudm@chromium.org>
Commit-Queue: Clemens Backes <clemensb@chromium.org>
Cr-Commit-Position: refs/heads/main@{#80180}
parent bac984e6
......@@ -585,7 +585,7 @@ class LiftoffCompiler {
LiftoffBailoutReason bailout_reason;
switch (kind) {
case kS128:
bailout_reason = kMissingCPUFeature;
bailout_reason = kSimd;
break;
case kRef:
case kOptRef:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment