summaryrefslogtreecommitdiff
path: root/compiler/utils/jni_macro_assembler_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/utils/jni_macro_assembler_test.h')
-rw-r--r--compiler/utils/jni_macro_assembler_test.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/utils/jni_macro_assembler_test.h b/compiler/utils/jni_macro_assembler_test.h
index 61296802f8..ba95e212bb 100644
--- a/compiler/utils/jni_macro_assembler_test.h
+++ b/compiler/utils/jni_macro_assembler_test.h
@@ -80,8 +80,8 @@ class JNIMacroAssemblerTest : public testing::Test {
}
// Override this to set up any architecture-specific things, e.g., CPU revision.
- virtual Ass* CreateAssembler(ArenaAllocator* arena) {
- return new (arena) Ass(arena);
+ virtual Ass* CreateAssembler(ArenaAllocator* allocator) {
+ return new (allocator) Ass(allocator);
}
// Override this to set up any architecture-specific things, e.g., register vectors.