diff options
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;  |