summaryrefslogtreecommitdiffstats
path: root/vm/mterp/out/InterpC-allstubs.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm/mterp/out/InterpC-allstubs.c')
-rw-r--r--vm/mterp/out/InterpC-allstubs.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/vm/mterp/out/InterpC-allstubs.c b/vm/mterp/out/InterpC-allstubs.c
index 861a1509a..e1acf618a 100644
--- a/vm/mterp/out/InterpC-allstubs.c
+++ b/vm/mterp/out/InterpC-allstubs.c
@@ -1653,12 +1653,8 @@ HANDLE_OPCODE(OP_MONITOR_ENTER /*vAA*/)
if (!checkForNullExportPC(obj, fp, pc))
GOTO_exceptionThrown();
ILOGV("+ locking %p %s\n", obj, obj->clazz->descriptor);
- EXPORT_PC(); /* need for precise GC, also WITH_MONITOR_TRACKING */
+ EXPORT_PC(); /* need for precise GC */
dvmLockObject(self, obj);
-#ifdef WITH_DEADLOCK_PREDICTION
- if (dvmCheckException(self))
- GOTO_exceptionThrown();
-#endif
}
FINISH(1);
OP_END