summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common.gypi2
-rw-r--r--deps/v8/test/cctest/test-assembler-arm64.cc20
2 files changed, 11 insertions, 11 deletions
diff --git a/common.gypi b/common.gypi
index 05b7429103..e5d973abda 100644
--- a/common.gypi
+++ b/common.gypi
@@ -36,7 +36,7 @@
# Reset this number to 0 on major V8 upgrades.
# Increment by one for each non-official patch applied to deps/v8.
- 'v8_embedder_string': '-node.9',
+ 'v8_embedder_string': '-node.10',
##### V8 defaults for Node.js #####
diff --git a/deps/v8/test/cctest/test-assembler-arm64.cc b/deps/v8/test/cctest/test-assembler-arm64.cc
index ef88b2963c..59643beabe 100644
--- a/deps/v8/test/cctest/test-assembler-arm64.cc
+++ b/deps/v8/test/cctest/test-assembler-arm64.cc
@@ -12179,35 +12179,35 @@ TEST(peek_poke_unaligned) {
// x0-x6 should be unchanged.
// w10-w12 should contain the lower words of x0-x2.
__ Poke(x0, 1);
- Clobber(&masm, {x0});
+ Clobber(&masm, RegList{x0});
__ Peek(x0, 1);
__ Poke(x1, 2);
- Clobber(&masm, {x1});
+ Clobber(&masm, RegList{x1});
__ Peek(x1, 2);
__ Poke(x2, 3);
- Clobber(&masm, {x2});
+ Clobber(&masm, RegList{x2});
__ Peek(x2, 3);
__ Poke(x3, 4);
- Clobber(&masm, {x3});
+ Clobber(&masm, RegList{x3});
__ Peek(x3, 4);
__ Poke(x4, 5);
- Clobber(&masm, {x4});
+ Clobber(&masm, RegList{x4});
__ Peek(x4, 5);
__ Poke(x5, 6);
- Clobber(&masm, {x5});
+ Clobber(&masm, RegList{x5});
__ Peek(x5, 6);
__ Poke(x6, 7);
- Clobber(&masm, {x6});
+ Clobber(&masm, RegList{x6});
__ Peek(x6, 7);
__ Poke(w0, 1);
- Clobber(&masm, {w10});
+ Clobber(&masm, RegList{w10});
__ Peek(w10, 1);
__ Poke(w1, 2);
- Clobber(&masm, {w11});
+ Clobber(&masm, RegList{w11});
__ Peek(w11, 2);
__ Poke(w2, 3);
- Clobber(&masm, {w12});
+ Clobber(&masm, RegList{w12});
__ Peek(w12, 3);
__ Drop(4);