summaryrefslogtreecommitdiffstats
path: root/vm/mterp/out/InterpC-allstubs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vm/mterp/out/InterpC-allstubs.cpp')
-rw-r--r--vm/mterp/out/InterpC-allstubs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/mterp/out/InterpC-allstubs.cpp b/vm/mterp/out/InterpC-allstubs.cpp
index 8152736a5..91b20d009 100644
--- a/vm/mterp/out/InterpC-allstubs.cpp
+++ b/vm/mterp/out/InterpC-allstubs.cpp
@@ -2137,11 +2137,11 @@ HANDLE_OPCODE(OP_APUT_OBJECT /*vAA, vBB, vCC*/)
if (obj != NULL) {
if (!checkForNull(obj))
GOTO_exceptionThrown();
- if (!dvmCanPutArrayElement(obj->clazz, arrayObj->obj.clazz)) {
+ if (!dvmCanPutArrayElement(obj->clazz, arrayObj->clazz)) {
LOGV("Can't put a '%s'(%p) into array type='%s'(%p)\n",
obj->clazz->descriptor, obj,
arrayObj->obj.clazz->descriptor, arrayObj);
- dvmThrowArrayStoreExceptionIncompatibleElement(obj->clazz, arrayObj->obj.clazz);
+ dvmThrowArrayStoreExceptionIncompatibleElement(obj->clazz, arrayObj->clazz);
GOTO_exceptionThrown();
}
}