diff options
| author | 2015-06-02 11:36:20 +0000 | |
|---|---|---|
| committer | 2015-06-02 11:36:20 +0000 | |
| commit | 6b27fefc9ec9835b9fd8f19a490c7ea4344e0b83 (patch) | |
| tree | 6a7f558ad6c6ef23d0ad815f403ab64e652b37fe /compiler/optimizing/builder.cc | |
| parent | 933984cdc0ce648a2f23e302643c13a71ee34e91 (diff) | |
| parent | 77e48c64e7c1c0084217b8df1b47ac6367e61cc7 (diff) | |
Merge "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; |