aboutsummaryrefslogtreecommitdiff
path: root/vm/compiler/codegen/mips/CodegenCommon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vm/compiler/codegen/mips/CodegenCommon.cpp')
-rw-r--r--vm/compiler/codegen/mips/CodegenCommon.cpp4
1 files changed, 2 insertions, 2 deletions
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));