summaryrefslogtreecommitdiffstats
path: root/compiler/optimizing/register_allocator_test.cc
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2015-02-18 14:33:14 -0800
committerMathieu Chartier <mathieuc@google.com>2015-02-19 09:59:50 -0800
commitb666f4805c8ae707ea6fd7f6c7f375e0b000dba8 (patch)
treea61439a9bcb555dc575286f3e0bb5e50ce185982 /compiler/optimizing/register_allocator_test.cc
parent39109a06015c91188232e59fa9e60e0915d24cd7 (diff)
downloadart-b666f4805c8ae707ea6fd7f6c7f375e0b000dba8.zip
art-b666f4805c8ae707ea6fd7f6c7f375e0b000dba8.tar.gz
art-b666f4805c8ae707ea6fd7f6c7f375e0b000dba8.tar.bz2
Move arenas into runtime
Moved arena pool into the runtime. Motivation: Allow GC to use arena allocators, recycle arena pool for linear alloc. Bug: 19264997 Change-Id: I8ddbb6d55ee923a980b28fb656c758c5d7697c2f
Diffstat (limited to 'compiler/optimizing/register_allocator_test.cc')
-rw-r--r--compiler/optimizing/register_allocator_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/register_allocator_test.cc b/compiler/optimizing/register_allocator_test.cc
index 0cc00c0..e5d06a9 100644
--- a/compiler/optimizing/register_allocator_test.cc
+++ b/compiler/optimizing/register_allocator_test.cc
@@ -14,6 +14,7 @@
* limitations under the License.
*/
+#include "base/arena_allocator.h"
#include "builder.h"
#include "code_generator.h"
#include "code_generator_x86.h"
@@ -25,7 +26,6 @@
#include "register_allocator.h"
#include "ssa_liveness_analysis.h"
#include "ssa_phi_elimination.h"
-#include "utils/arena_allocator.h"
#include "gtest/gtest.h"