From b3bd5f07884f5a1f2b84224363b1372d7c28d447 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 8 Mar 2012 21:05:27 -0800 Subject: Refactor the compilers out of libart. This builds three separate compilers and dynamically links with the right one at runtime. Change-Id: I59d22b9884f41de733c09f97e29ee290236d5f4b --- src/compiler/codegen/mips/mips/ArchVariant.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/compiler/codegen/mips') diff --git a/src/compiler/codegen/mips/mips/ArchVariant.cc b/src/compiler/codegen/mips/mips/ArchVariant.cc index 6d29fc518e..6b04d70a74 100644 --- a/src/compiler/codegen/mips/mips/ArchVariant.cc +++ b/src/compiler/codegen/mips/mips/ArchVariant.cc @@ -25,9 +25,9 @@ namespace art { * Determine the initial instruction set to be used for this trace. * Later components may decide to change this. */ -OatInstructionSetType oatInstructionSet(void) +InstructionSet oatInstructionSet() { - return DALVIK_OAT_MIPS32; + return kMips; } /* Architecture-specific initializations and checks go here */ -- cgit v1.2.3-59-g8ed1b