diff options
author | Michaël Zasso <targos@protonmail.com> | 2018-09-07 17:07:13 +0200 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2018-09-07 20:59:13 +0200 |
commit | 586db2414a338e1bf6eaf6e672a3adc7ce309f6a (patch) | |
tree | 139fa972aef648481ddee22a3a85b99707d28df5 /deps/v8/test/unittests/interpreter/bytecode-array-builder-unittest.cc | |
parent | 12ed7c94e5160aa6d38e3d2cb2a73dae0a6f9342 (diff) | |
download | node-new-586db2414a338e1bf6eaf6e672a3adc7ce309f6a.tar.gz |
deps: update V8 to 6.9.427.22
PR-URL: https://github.com/nodejs/node/pull/21983
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'deps/v8/test/unittests/interpreter/bytecode-array-builder-unittest.cc')
-rw-r--r-- | deps/v8/test/unittests/interpreter/bytecode-array-builder-unittest.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/deps/v8/test/unittests/interpreter/bytecode-array-builder-unittest.cc b/deps/v8/test/unittests/interpreter/bytecode-array-builder-unittest.cc index afcef22282..1ae636eceb 100644 --- a/deps/v8/test/unittests/interpreter/bytecode-array-builder-unittest.cc +++ b/deps/v8/test/unittests/interpreter/bytecode-array-builder-unittest.cc @@ -630,7 +630,7 @@ TEST_F(BytecodeArrayBuilderTest, ForwardJumps) { iterator.Advance(); CHECK_EQ(iterator.current_bytecode(), Bytecode::kJumpConstant); - CHECK_EQ(*iterator.GetConstantForIndexOperand(0), + CHECK_EQ(iterator.GetConstantForIndexOperand(0), Smi::FromInt(kFarJumpDistance)); iterator.Advance(); @@ -638,7 +638,7 @@ TEST_F(BytecodeArrayBuilderTest, ForwardJumps) { iterator.Advance(); CHECK_EQ(iterator.current_bytecode(), Bytecode::kJumpIfTrueConstant); - CHECK_EQ(*iterator.GetConstantForIndexOperand(0), + CHECK_EQ(iterator.GetConstantForIndexOperand(0), Smi::FromInt(kFarJumpDistance - 5)); iterator.Advance(); @@ -646,7 +646,7 @@ TEST_F(BytecodeArrayBuilderTest, ForwardJumps) { iterator.Advance(); CHECK_EQ(iterator.current_bytecode(), Bytecode::kJumpIfFalseConstant); - CHECK_EQ(*iterator.GetConstantForIndexOperand(0), + CHECK_EQ(iterator.GetConstantForIndexOperand(0), Smi::FromInt(kFarJumpDistance - 10)); iterator.Advance(); @@ -654,7 +654,7 @@ TEST_F(BytecodeArrayBuilderTest, ForwardJumps) { iterator.Advance(); CHECK_EQ(iterator.current_bytecode(), Bytecode::kJumpIfToBooleanTrueConstant); - CHECK_EQ(*iterator.GetConstantForIndexOperand(0), + CHECK_EQ(iterator.GetConstantForIndexOperand(0), Smi::FromInt(kFarJumpDistance - 15)); iterator.Advance(); @@ -663,7 +663,7 @@ TEST_F(BytecodeArrayBuilderTest, ForwardJumps) { CHECK_EQ(iterator.current_bytecode(), Bytecode::kJumpIfToBooleanFalseConstant); - CHECK_EQ(*iterator.GetConstantForIndexOperand(0), + CHECK_EQ(iterator.GetConstantForIndexOperand(0), Smi::FromInt(kFarJumpDistance - 20)); iterator.Advance(); } |