Author: Richard Plangger <[email protected]>
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
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to