summaryrefslogtreecommitdiff
path: root/compiler/optimizing/induction_var_analysis.h
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2015-09-29 19:01:15 +0100
committer Vladimir Marko <vmarko@google.com> 2015-09-29 19:46:03 +0100
commit5233f93ee336b3581ccdb993ff6342c52fec34b0 (patch)
tree225dc0ab491263ef56362a8d0fe2926266bd5047 /compiler/optimizing/induction_var_analysis.h
parentde8a3f4dce1e9ff0e3be16956b06bafc8cd4f397 (diff)
Optimizing: Tag even more arena allocations.
Tag previously "Misc" arena allocations with more specific allocation types. Move some native heap allocations to the arena in BCE. Bug: 23736311 Change-Id: If8ef15a8b614dc3314bdfb35caa23862c9d4d25c
Diffstat (limited to 'compiler/optimizing/induction_var_analysis.h')
-rw-r--r--compiler/optimizing/induction_var_analysis.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/induction_var_analysis.h b/compiler/optimizing/induction_var_analysis.h
index 190a0db65c..ba5bfc215c 100644
--- a/compiler/optimizing/induction_var_analysis.h
+++ b/compiler/optimizing/induction_var_analysis.h
@@ -78,7 +78,7 @@ class HInductionVarAnalysis : public HOptimization {
* (4) periodic
* nop: a, then defined by b (repeated when exhausted)
*/
- struct InductionInfo : public ArenaObject<kArenaAllocMisc> {
+ struct InductionInfo : public ArenaObject<kArenaAllocInductionVarAnalysis> {
InductionInfo(InductionClass ic,
InductionOp op,
InductionInfo* a,