summaryrefslogtreecommitdiff
path: root/src/compiler/codegen/mips
diff options
context:
space:
mode:
author Elliott Hughes <enh@google.com> 2012-03-08 21:05:27 -0800
committer Elliott Hughes <enh@google.com> 2012-03-09 15:37:46 -0800
commitb3bd5f07884f5a1f2b84224363b1372d7c28d447 (patch)
tree6e2997ab64b4a4f32d7ef539a4649adc736ea553 /src/compiler/codegen/mips
parentddbd01ac1660d57416879d5a576482f1048dde64 (diff)
Refactor the compilers out of libart.
This builds three separate compilers and dynamically links with the right one at runtime. Change-Id: I59d22b9884f41de733c09f97e29ee290236d5f4b
Diffstat (limited to 'src/compiler/codegen/mips')
-rw-r--r--src/compiler/codegen/mips/mips/ArchVariant.cc4
1 files changed, 2 insertions, 2 deletions
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 */