Commit 9f94e424 authored by Leszek Swirski's avatar Leszek Swirski Committed by V8 LUCI CQ

[maglev] Fix CreateClosure input count

Bug: v8:7700
Change-Id: I0fb6de81c924e8200bd0c3117e3bf08e0365d939
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3764346
Auto-Submit: Leszek Swirski <leszeks@chromium.org>
Reviewed-by: 's avatarVictor Gomes <victorgomes@chromium.org>
Commit-Queue: Victor Gomes <victorgomes@chromium.org>
Cr-Commit-Position: refs/heads/main@{#81767}
parent acae34b2
...@@ -1909,8 +1909,8 @@ class FastCreateClosure : public FixedInputValueNodeT<1, FastCreateClosure> { ...@@ -1909,8 +1909,8 @@ class FastCreateClosure : public FixedInputValueNodeT<1, FastCreateClosure> {
const compiler::FeedbackCellRef feedback_cell_; const compiler::FeedbackCellRef feedback_cell_;
}; };
class CreateClosure : public FixedInputValueNodeT<0, CreateClosure> { class CreateClosure : public FixedInputValueNodeT<1, CreateClosure> {
using Base = FixedInputValueNodeT<0, CreateClosure>; using Base = FixedInputValueNodeT<1, CreateClosure>;
public: public:
explicit CreateClosure(uint64_t bitfield, explicit CreateClosure(uint64_t bitfield,
......
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