Skip to content

Commit 966ba28

Browse files
richardlaudanielleadams
authored andcommittedJul 6, 2023
deps: V8: cherry-pick 3e4952cb2a59
Original commit message: [test] fix uninitialized error In op1a.Equals(&op3) call, that->parameter() is undefined. which triggers uninitialized error from gcc. Change-Id: I87f1fcba3e57adbb5a1e745a3d787c62a87fd1d3 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4307714 Commit-Queue: Toon Verwaest <verwaest@chromium.org> Reviewed-by: Toon Verwaest <verwaest@chromium.org> Cr-Commit-Position: refs/heads/main@{#86267} Refs: v8/v8@3e4952c PR-URL: #47236 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
1 parent 2091b47 commit 966ba28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎deps/v8/test/cctest/compiler/test-operator.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ TEST(TestOperator1double_Equals) {
210210
CHECK(!op2b.Equals(&op1a));
211211
CHECK(!op2b.Equals(&op1b));
212212

213-
Operator op3(25, NONE, "Weepy", 0, 0, 0, 0, 0, 0);
213+
Operator1<double> op3(25, NONE, "Weepy", 0, 0, 0, 0, 0, 0, 1.1);
214214

215215
CHECK(!op1a.Equals(&op3));
216216
CHECK(!op1b.Equals(&op3));

0 commit comments

Comments
 (0)
Please sign in to comment.