|
Message
From: cvs at opencores.org<cvs@o...>
Date: Fri Jan 18 23:47:37 CET 2008
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/08/01 18:23:47 Modified: jop/java/target/src/test/debug JopDebugKernel.java Log: Very small fix. Removed one dependency on BCEL. Now this class will compile again. Revision Changes Path 1.9 jop/java/target/src/test/debug/JopDebugKernel.java http://www.opencores.org/cvsweb.shtml/jop/java/target/src/test/debug/JopDebugKernel.java.diff?r1=1.8&r2=1.9 (In the diff below, changes in quantity of whitespace are not shown.) Index: JopDebugKernel.java =================================================================== RCS file: /cvsroot/paulo/jop/java/target/src/test/debug/JopDebugKernel.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -b -r1.8 -r1.9 --- JopDebugKernel.java 18 Jan 2008 22:31:33 -0000 1.8 +++ JopDebugKernel.java 18 Jan 2008 22:47:36 -0000 1.9 @@ -27,8 +27,6 @@ import java.io.InputStream; import java.io.OutputStream; -import org.apache.bcel.Constants; - import debug.constants.TagConstants; import com.jopdesign.sys.Const; import com.jopdesign.sys.GC; @@ -1837,7 +1835,8 @@ synchronized(GC.getMutex()) { //return (Native.rdMem(objectHandle + GC.OFF_TYPE) == GC.IS_REFARR); - return (Native.rdMem(objectHandle + GC.OFF_TYPE) == Constants.T_ARRAY); + //return (Native.rdMem(objectHandle + GC.OFF_TYPE) == Constants.T_ARRAY); + return (Native.rdMem(objectHandle + GC.OFF_TYPE) == 13); } }
|
 |