Commit 89aaa182 authored by Patrick Thier's avatar Patrick Thier Committed by V8 LUCI CQ

[sparkplug] Allow %CompileBaseline for fuzzing on archs that support SP

Allow %CompileBaseline on architectures that support Sparkplug
independent of runtime flags.
The deicsion based on --sparkplug runtime flag lead to spurious errors
on correctness fuzzers.

Bug: chromium:1244474
Change-Id: I764bd80cd7dff7e72729145c165dc039c594753c
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3127719Reviewed-by: 's avatarLeszek Swirski <leszeks@chromium.org>
Commit-Queue: Patrick Thier <pthier@chromium.org>
Cr-Commit-Position: refs/heads/main@{#76572}
parent dbc73a6c
...@@ -226,7 +226,7 @@ bool Runtime::IsAllowListedForFuzzing(FunctionId id) { ...@@ -226,7 +226,7 @@ bool Runtime::IsAllowListedForFuzzing(FunctionId id) {
return !FLAG_allow_natives_for_differential_fuzzing; return !FLAG_allow_natives_for_differential_fuzzing;
case Runtime::kBaselineOsr: case Runtime::kBaselineOsr:
case Runtime::kCompileBaseline: case Runtime::kCompileBaseline:
return FLAG_sparkplug; return ENABLE_SPARKPLUG;
default: default:
return false; return false;
} }
......
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