From e83504b520007dc3bb03764c575c304f46d34123 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Wed, 18 Jan 2017 13:30:00 +0000 Subject: [PATCH] Fix Mips build. Test: build mips Change-Id: Icadff73d6a266bbdfd6cb67a66f04f559f28846d --- runtime/arch/mips/entrypoints_init_mips.cc | 8 -------- 1 file changed, 8 deletions(-) diff --git a/runtime/arch/mips/entrypoints_init_mips.cc b/runtime/arch/mips/entrypoints_init_mips.cc index 5c569232a..095c5a447 100644 --- a/runtime/arch/mips/entrypoints_init_mips.cc +++ b/runtime/arch/mips/entrypoints_init_mips.cc @@ -142,16 +142,8 @@ void InitEntryPoints(JniEntryPoints* jpoints, QuickEntryPoints* qpoints) { static_assert(!IsDirectEntrypoint(kQuickGetObjStatic), "Non-direct C stub marked direct."); // Array - qpoints->pAputObjectWithNullAndBoundCheck = art_quick_aput_obj_with_null_and_bound_check; - static_assert(!IsDirectEntrypoint(kQuickAputObjectWithNullAndBoundCheck), - "Non-direct C stub marked direct."); - qpoints->pAputObjectWithBoundCheck = art_quick_aput_obj_with_bound_check; - static_assert(!IsDirectEntrypoint(kQuickAputObjectWithBoundCheck), - "Non-direct C stub marked direct."); qpoints->pAputObject = art_quick_aput_obj; static_assert(!IsDirectEntrypoint(kQuickAputObject), "Non-direct C stub marked direct."); - qpoints->pHandleFillArrayData = art_quick_handle_fill_data; - static_assert(!IsDirectEntrypoint(kQuickHandleFillArrayData), "Non-direct C stub marked direct."); // JNI qpoints->pJniMethodStart = JniMethodStart; -- 2.11.0