From fa6b93c4b69e6d7ddfa2a4ed0aff01b0608c5a3a Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Tue, 15 Sep 2015 10:15:55 +0100 Subject: Optimizing: Tag arena allocations in HGraph. Replace GrowableArray with ArenaVector in HGraph and related classes HEnvironment, HLoopInformation, HInvoke and HPhi, and tag allocations with new arena allocation types. Change-Id: I3d79897af405b9a1a5b98bfc372e70fe0b3bc40d --- compiler/optimizing/codegen_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/optimizing/codegen_test.cc') diff --git a/compiler/optimizing/codegen_test.cc b/compiler/optimizing/codegen_test.cc index 72c67f5651..5fc305cd34 100644 --- a/compiler/optimizing/codegen_test.cc +++ b/compiler/optimizing/codegen_test.cc @@ -193,7 +193,7 @@ static void RunCodeOptimized(CodeGenerator* codegen, bool has_result, Expected expected) { // Tests may have already computed it. - if (graph->GetReversePostOrder().IsEmpty()) { + if (graph->GetReversePostOrder().empty()) { graph->BuildDominatorTree(); } SsaLivenessAnalysis liveness(graph, codegen); -- cgit v1.2.3