[pypy-svn] r49321 - pypy/dist/pypy/translator/llvm

fijal at codespeak.net fijal at codespeak.net
Mon Dec 3 18:00:54 CET 2007


Author: fijal
Date: Mon Dec  3 18:00:54 2007
New Revision: 49321

Modified:
   pypy/dist/pypy/translator/llvm/opwriter.py
Log:
Add ullong_is_true operation


Modified: pypy/dist/pypy/translator/llvm/opwriter.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/opwriter.py	(original)
+++ pypy/dist/pypy/translator/llvm/opwriter.py	Mon Dec  3 18:00:54 2007
@@ -282,6 +282,7 @@
                                  opr.argrefs[0], "0")
     uint_is_true = int_is_true
     llong_is_true = int_is_true
+    ullong_is_true = int_is_true
 
     def float_is_true(self, opr):
         self.codewriter.binaryop("fcmp une", opr.retref, opr.argtypes[0],



More information about the Pypy-commit mailing list