Revision: 52
http://svn.sourceforge.net/pearcolator/?rev=52&view=rev
Author: michael_baer
Date: 2007-04-14 03:17:47 -0700 (Sat, 14 Apr 2007)
Log Message:
-----------
PPC_InstructionDecoder does not actually implement InstructionDecoder and therefore shouldn't pretend it did.
Modified Paths:
--------------
src/org/binarytranslator/arch/ppc/decoder/PPC_InstructionDecoder.java
Modified: src/org/binarytranslator/arch/ppc/decoder/PPC_InstructionDecoder.java
===================================================================
--- src/org/binarytranslator/arch/ppc/decoder/PPC_InstructionDecoder.java 2007-04-14 09:58:24 UTC (rev 51)
+++ src/org/binarytranslator/arch/ppc/decoder/PPC_InstructionDecoder.java 2007-04-14 10:17:47 UTC (rev 52)
@@ -12,7 +12,6 @@
import org.binarytranslator.DBT_Options;
import org.binarytranslator.arch.ppc.os.process.PPC_ProcessSpace;
import org.binarytranslator.generic.branch.BranchLogic;
-import org.binarytranslator.generic.decoder.InstructionDecoder;
import org.binarytranslator.generic.fault.BadInstructionException;
import org.binarytranslator.vmInterface.DBT_OptimizingCompilerException;
import org.jikesrvm.compilers.opt.ir.Binary;
@@ -40,7 +39,7 @@
* This class is the super class of all instruction translators, it implements
* default methods that just throw errors
*/
-public class PPC_InstructionDecoder extends InstructionDecoder implements
+public class PPC_InstructionDecoder implements
OPT_Operators {
/* Different instruction formats */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|