 Chromium Code Reviews
 Chromium Code Reviews Issue 2450243002:
  [ignition] Add a property call bytecode  (Closed)
    
  
    Issue 2450243002:
  [ignition] Add a property call bytecode  (Closed) 
  | Index: src/interpreter/bytecode-array-builder.h | 
| diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h | 
| index 93fd6c47e83e8c1404604966508f884ca06f5cf5..c581cc19e1539fd9a32224cd37ff1475a02048a7 100644 | 
| --- a/src/interpreter/bytecode-array-builder.h | 
| +++ b/src/interpreter/bytecode-array-builder.h | 
| @@ -191,7 +191,8 @@ class V8_EXPORT_PRIVATE BytecodeArrayBuilder final | 
| // feedback vector. | 
| BytecodeArrayBuilder& Call( | 
| Register callable, RegisterList args, int feedback_slot, | 
| - TailCallMode tail_call_mode = TailCallMode::kDisallow); | 
| + TailCallMode tail_call_mode = TailCallMode::kDisallow, | 
| + Call::CallType call_type = Call::OTHER_CALL); | 
| 
rmcilroy
2016/10/26 16:20:16
I don't think we should have a default value for t
 
Leszek Swirski
2016/10/27 09:08:24
Done.
 | 
| // Call the new operator. The accumulator holds the |new_target|. | 
| // The |constructor| is in a register and arguments are in |args|. |