| Index: src/interpreter/bytecode-array-builder.cc
|
| diff --git a/src/interpreter/bytecode-array-builder.cc b/src/interpreter/bytecode-array-builder.cc
|
| index edeb7ca1f22581e3b649c88ee588eaba8e9fae6e..a2610aed6a964cbef00c4fd11fc05c4b064292a6 100644
|
| --- a/src/interpreter/bytecode-array-builder.cc
|
| +++ b/src/interpreter/bytecode-array-builder.cc
|
| @@ -640,9 +640,9 @@ BytecodeArrayBuilder& BytecodeArrayBuilder::StoreDataPropertyInLiteral(
|
| }
|
|
|
| BytecodeArrayBuilder& BytecodeArrayBuilder::CollectTypeProfile(
|
| - Register name, int feedback_slot) {
|
| + Register position, Register name, int feedback_slot) {
|
| DCHECK(FLAG_type_profile);
|
| - OutputCollectTypeProfile(name, feedback_slot);
|
| + OutputCollectTypeProfile(position, name, feedback_slot);
|
| return *this;
|
| }
|
|
|
|
|