You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ge...@apache.org on 2005/10/10 15:39:20 UTC

svn commit: r312644 - /incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/opcode.c

Author: geirm
Date: Mon Oct 10 06:39:17 2005
New Revision: 312644

URL: http://svn.apache.org/viewcvs?rev=312644&view=rev
Log:
Add debug statement to see which opcode is causing us
to die

Modified:
    incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/opcode.c

Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/opcode.c
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/opcode.c?rev=312644&r1=312643&r2=312644&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/opcode.c (original)
+++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/opcode.c Mon Oct 10 06:39:17 2005
@@ -2003,6 +2003,8 @@
 static void dummy1(void) { char *p, *dummy2; dummy2 = p; dummy1(); }
 #define STUB { dummy1(); }
 
+sysDbgMsg(0, "opcode.c", "opcode = %x", opcode);
+
 switch(opcode)
 {
 case OPCODE_00_NOP:         /* Do nothing */