Skip to content

Commit f7c4ce2

Browse files
LiuYu396juanarbol
authored andcommitted
deps: V8: cherry-pick 3ebf2052a1b2
Original commit message: [mips64] Remove a useless declaration of Operand. Change-Id: I5144d8315b5c1aca751d138e4d87240b703dc9e3 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3650359 Commit-Queue: Zhao Jiazhong <[email protected]> Auto-Submit: Yu Liu <[email protected]> Reviewed-by: Zhao Jiazhong <[email protected]> Cr-Commit-Position: refs/heads/main@{#80585} Refs: v8/v8@3ebf205 PR-URL: #43147 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Minwoo Jung <[email protected]> Reviewed-By: Beth Griggs <[email protected]>
1 parent feac215 commit f7c4ce2

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
# Reset this number to 0 on major V8 upgrades.
3838
# Increment by one for each non-official patch applied to deps/v8.
39-
'v8_embedder_string': '-node.20',
39+
'v8_embedder_string': '-node.21',
4040

4141
##### V8 defaults for Node.js #####
4242

deps/v8/src/codegen/mips64/assembler-mips64.h

-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ class Operand {
7171
: rm_(no_reg), rmode_(RelocInfo::EXTERNAL_REFERENCE) {
7272
value_.immediate = static_cast<int64_t>(f.address());
7373
}
74-
V8_INLINE explicit Operand(const char* s);
7574
explicit Operand(Handle<HeapObject> handle);
7675
V8_INLINE explicit Operand(Smi value) : rm_(no_reg), rmode_(RelocInfo::NONE) {
7776
value_.immediate = static_cast<intptr_t>(value.ptr());

0 commit comments

Comments
 (0)