[pypy-commit] pypy vecopt-merge: inputargvector has type V to satisfy the translation

plan_rich noreply at buildbot.pypy.org
Mon Oct 12 14:25:30 CEST 2015


Author: Richard Plangger <planrichi at gmail.com>
Branch: vecopt-merge
Changeset: r80134:34f55fc1bf0d
Date: 2015-10-12 14:25 +0200
http://bitbucket.org/pypy/pypy/changeset/34f55fc1bf0d/

Log:	inputargvector has type V to satisfy the translation

diff --git a/rpython/jit/metainterp/resoperation.py b/rpython/jit/metainterp/resoperation.py
--- a/rpython/jit/metainterp/resoperation.py
+++ b/rpython/jit/metainterp/resoperation.py
@@ -722,8 +722,6 @@
 class VectorOp(object):
     _mixin_ = True
 
-    type = 'f'
-
     def vector_bytesize(self):
         assert self.count > 0
         return self.byte_size * self.count
@@ -796,6 +794,7 @@
         self.setref_base(lltype.nullptr(llmemory.GCREF.TO))
 
 class InputArgVector(VectorOp, AbstractInputArg):
+    type = 'V'
     def __init__(self):
         pass
 


More information about the pypy-commit mailing list