diff options
| author | 2015-06-02 15:14:02 +0000 | |
|---|---|---|
| committer | 2015-06-02 15:14:02 +0000 | |
| commit | 637be5cefe1462b8d0bd5e065bd64a10f01647ac (patch) | |
| tree | 746b48ca7c5fd9f1e70127dd4e8da6cb88ee1c20 /compiler/optimizing/builder.cc | |
| parent | c6f24e6954bee6fafdb446091c3961d199b74aac (diff) | |
| parent | 82cc909ff81cc25f7fe97ddac3a1a1f6dc9f5792 (diff) | |
Merge "Revert "Revert "Bring ReferenceTypePropagation to HInvoke return types"""
Diffstat (limited to 'compiler/optimizing/builder.cc')
| -rw-r--r-- | compiler/optimizing/builder.cc | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/compiler/optimizing/builder.cc b/compiler/optimizing/builder.cc index f98029da03..f3f82417f7 100644 --- a/compiler/optimizing/builder.cc +++ b/compiler/optimizing/builder.cc @@ -723,10 +723,16 @@ bool HGraphBuilder::BuildInvoke(const Instruction& instruction, } } - invoke = new (arena_) HInvokeStaticOrDirect( - arena_, number_of_arguments, return_type, dex_pc, target_method.dex_method_index, - is_recursive, string_init_offset, invoke_type, optimized_invoke_type, - clinit_check_requirement); + invoke = new (arena_) HInvokeStaticOrDirect(arena_, + number_of_arguments, + return_type, + dex_pc, + target_method.dex_method_index, + is_recursive, + string_init_offset, + invoke_type, + optimized_invoke_type, + clinit_check_requirement); } size_t start_index = 0; |