diff options
author | 2015-09-17 15:32:33 +0000 | |
---|---|---|
committer | 2015-09-17 15:32:33 +0000 | |
commit | e3b223594e2e9d91903a62180c9660664052506b (patch) | |
tree | 8d60856999139cf5b0b0f145f69c35a84a60716c /compiler/optimizing/nodes.h | |
parent | a201d5eeb0903408df925a1ed1686a55238a274c (diff) | |
parent | b7d8e8cf7063fdec1cce6ebd33e33804976bd978 (diff) |
Merge "Optimizing: Do not use range-based loop when inserting elements."
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r-- | compiler/optimizing/nodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index 33c0d88f3d..38f46670a6 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -3028,7 +3028,8 @@ class HInvoke : public HInstruction { : HInstruction( SideEffects::AllExceptGCDependency(), dex_pc), // Assume write/read on all fields/arrays. number_of_arguments_(number_of_arguments), - inputs_(number_of_arguments + number_of_other_inputs, arena->Adapter(kArenaAllocInvokeInputs)), + inputs_(number_of_arguments + number_of_other_inputs, + arena->Adapter(kArenaAllocInvokeInputs)), return_type_(return_type), dex_method_index_(dex_method_index), original_invoke_type_(original_invoke_type), |