Skip to content

Commit 2025345

Browse files
committed
deps: patch V8 to fix armv7 build
1 parent a435680 commit 2025345

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

common.gypi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
# Reset this number to 0 on major V8 upgrades.
4040
# Increment by one for each non-official patch applied to deps/v8.
41-
'v8_embedder_string': '-node.8',
41+
'v8_embedder_string': '-node.9',
4242

4343
##### V8 defaults for Node.js #####
4444

deps/v8/src/compiler/turboshaft/int64-lowering-reducer.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,8 @@ class Int64LoweringReducer : public Next {
637637
result = __ Word32CountLeadingZeros(high);
638638
}
639639

640-
return __ Tuple<Word32, Word32>(result, __ Word32Constant(0));
640+
V<Word32> result_ = result;
641+
return __ Tuple(result_, __ Word32Constant(0));
641642
}
642643

643644
V<Word32Pair> LowerCtz(V<Word32Pair> input) {
@@ -650,7 +651,8 @@ class Int64LoweringReducer : public Next {
650651
result = __ Word32CountTrailingZeros(low);
651652
}
652653

653-
return __ Tuple<Word32, Word32>(result, __ Word32Constant(0));
654+
V<Word32> result_ = result;
655+
return __ Tuple(result_, __ Word32Constant(0));
654656
}
655657

656658
V<Word32Pair> LowerPopCount(V<Word32Pair> input) {

0 commit comments

Comments
 (0)