File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
deps/v8/src/compiler/turboshaft Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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) {
You can’t perform that action at this time.
0 commit comments