[pypy-commit] pypy ppc-jit-backend: Removed NOP from class PPCBuilder, it is implemented in ppc_assembler.py.

hager noreply at buildbot.pypy.org
Thu Aug 11 16:47:55 CEST 2011


Author: hager <sven.hager at uni-duesseldorf.de>
Branch: ppc-jit-backend
Changeset: r46437:abba043a76c1
Date: 2011-08-11 16:50 +0200
http://bitbucket.org/pypy/pypy/changeset/abba043a76c1/

Log:	Removed NOP from class PPCBuilder, it is implemented in
	ppc_assembler.py.

diff --git a/pypy/jit/backend/ppc/ppcgen/ppc_assembler.py b/pypy/jit/backend/ppc/ppcgen/ppc_assembler.py
--- a/pypy/jit/backend/ppc/ppcgen/ppc_assembler.py
+++ b/pypy/jit/backend/ppc/ppcgen/ppc_assembler.py
@@ -897,9 +897,6 @@
         self.load_word(10, addr)
         self.stw(source_reg, 10, 0)
 
-    def nop(self):
-        self.ori(0, 0, 0)
-
     # translate a trace operation to corresponding machine code
     def build_op(self, trace_op, cpu):
         opnum = trace_op.getopnum()


More information about the pypy-commit mailing list