summaryrefslogtreecommitdiff
path: root/compiler/utils/assembler_thumb_test.cc
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2018-04-04 23:57:14 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2018-04-04 23:57:14 +0000
commitd9c8f55d18af0cdf379715eef83d6c9f737ef947 (patch)
tree1c5d694fd6d1a86edb65dd826e20282a6fc26a28 /compiler/utils/assembler_thumb_test.cc
parent5a745014b34109c34809ff904949784fd9ff3622 (diff)
parent3215fff7ef8fa3c2250b91158560eacc613a4671 (diff)
Merge "Separate Malloc and MemMap ArenaPools"
Diffstat (limited to 'compiler/utils/assembler_thumb_test.cc')
-rw-r--r--compiler/utils/assembler_thumb_test.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/utils/assembler_thumb_test.cc b/compiler/utils/assembler_thumb_test.cc
index 655d17d4fb..053e202523 100644
--- a/compiler/utils/assembler_thumb_test.cc
+++ b/compiler/utils/assembler_thumb_test.cc
@@ -27,6 +27,7 @@
#include "utils/arm/jni_macro_assembler_arm_vixl.h"
#include "base/hex_dump.h"
+#include "base/malloc_arena_pool.h"
#include "common_runtime_test.h"
namespace art {
@@ -169,7 +170,7 @@ class ArmVIXLAssemblerTest : public ::testing::Test {
public:
ArmVIXLAssemblerTest() : pool(), allocator(&pool), assembler(&allocator) { }
- ArenaPool pool;
+ MallocArenaPool pool;
ArenaAllocator allocator;
ArmVIXLJNIMacroAssembler assembler;
};