diff options
| author | 2015-05-29 10:52:55 +0100 | |
|---|---|---|
| committer | 2015-06-02 11:36:18 +0100 | |
| commit | 77e48c64e7c1c0084217b8df1b47ac6367e61cc7 (patch) | |
| tree | fa9bc3fe2e1ca79557ea99799362306ee15c19f0 /compiler/optimizing/builder.cc | |
| parent | a96bea54b7e3def5490d169f2bf92be2e68dd001 (diff) | |
Bring ReferenceTypePropagation to HInvoke return types
Change-Id: Ie8f6b0ea5bd841c9555f3b1b6d4b7dce92a117f1
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; |