|
Message
From: cvs at opencores.org<cvs@o...>
Date: Sun Feb 24 21:18:25 CET 2008
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/08/02 24:21:18 Modified: jop/java/tools/src/com/jopdesign/libgraph/cfg/statements/common InvokeStmt.java Log: removed cycles from stackcode, moved to joptimizer Revision Changes Path 1.4 jop/java/tools/src/com/jopdesign/libgraph/cfg/statements/common/InvokeStmt.java http://www.opencores.org/cvsweb.shtml/jop/java/tools/src/com/jopdesign/libgraph/cfg/statements/common/InvokeStmt.java.diff?r1=1.3&r2=1.4 (In the diff below, changes in quantity of whitespace are not shown.) Index: InvokeStmt.java =================================================================== RCS file: /cvsroot/stefant/jop/java/tools/src/com/jopdesign/libgraph/cfg/statements/common/InvokeStmt.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -b -r1.3 -r1.4 --- InvokeStmt.java 22 Feb 2008 21:39:03 -0000 1.3 +++ InvokeStmt.java 24 Feb 2008 20:18:25 -0000 1.4 @@ -21,7 +21,6 @@ import com.jopdesign.libgraph.struct.ClassInfo; import com.jopdesign.libgraph.struct.ConstantMethod; import com.jopdesign.libgraph.struct.MethodInfo; -import com.jopdesign.libgraph.struct.TypeException; import com.jopdesign.libgraph.struct.type.TypeInfo; /** @@ -37,7 +36,7 @@ private ConstantMethod method; private int invokeType; - public InvokeStmt(ConstantMethod methodInfo, int invokeType) throws TypeException { + public InvokeStmt(ConstantMethod methodInfo, int invokeType) { this.method = methodInfo; this.invokeType = invokeType; }
|
 |