[pypy-svn] r35495 - pypy/dist/pypy/jit/codegen/llvm

ericvrp at codespeak.net ericvrp at codespeak.net
Fri Dec 8 17:50:04 CET 2006


Author: ericvrp
Date: Fri Dec  8 17:50:03 2006
New Revision: 35495

Modified:
   pypy/dist/pypy/jit/codegen/llvm/rgenop.py
Log:
minor fix


Modified: pypy/dist/pypy/jit/codegen/llvm/rgenop.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/llvm/rgenop.py	(original)
+++ pypy/dist/pypy/jit/codegen/llvm/rgenop.py	Fri Dec  8 17:50:03 2006
@@ -40,7 +40,7 @@
         self.name = var.name + '_' 
 
     def type(self):
-        return super(VarAddr, self).type() + '*'
+        return 'int*'
 
 
 class IntConst(GenConst):



More information about the Pypy-commit mailing list