From fc3b0c4ba9e0ecabb0f6df1ceb6a3eb69da07c7b Mon Sep 17 00:00:00 2001 From: Raghu Gandham Date: Mon, 30 Jul 2012 14:46:12 -0700 Subject: Fix the MIPS build: 1. LOG->ALOG conversion 2. Remove Jumbo opcodes support Change-Id: Ifbd1eae2f5e7a1cab5828ebfbdba380ad499abfd --- vm/compiler/codegen/mips/CodegenCommon.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vm/compiler/codegen/mips/CodegenCommon.cpp') diff --git a/vm/compiler/codegen/mips/CodegenCommon.cpp b/vm/compiler/codegen/mips/CodegenCommon.cpp index 287e8c17b..0622fb841 100644 --- a/vm/compiler/codegen/mips/CodegenCommon.cpp +++ b/vm/compiler/codegen/mips/CodegenCommon.cpp @@ -64,7 +64,7 @@ static void setMemRefType(MipsLIR *lir, bool isLoad, int memType) *maskPtr |= ENCODE_MUST_NOT_ALIAS; break; default: - LOGE("Jit: invalid memref kind - %d", memType); + ALOGE("Jit: invalid memref kind - %d", memType); assert(0); // Bail if debug build, set worst-case in the field *maskPtr |= ENCODE_ALL; } @@ -310,7 +310,7 @@ static MipsLIR *newLIR3(CompilationUnit *cUnit, MipsOpCode opcode, { MipsLIR *insn = (MipsLIR *) dvmCompilerNew(sizeof(MipsLIR), true); if (!(EncodingMap[opcode].flags & IS_TERTIARY_OP)) { - LOGE("Bad LIR3: %s[%d]",EncodingMap[opcode].name,opcode); + ALOGE("Bad LIR3: %s[%d]",EncodingMap[opcode].name,opcode); } assert(isPseudoOpCode(opcode) || (EncodingMap[opcode].flags & IS_TERTIARY_OP)); -- cgit v1.2.3