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

ericvrp at codespeak.net ericvrp at codespeak.net
Thu Jan 12 21:36:49 CET 2006


Author: ericvrp
Date: Thu Jan 12 21:36:46 2006
New Revision: 22079

Modified:
   pypy/dist/pypy/translator/llvm/exception.py
Log:
oops


Modified: pypy/dist/pypy/translator/llvm/exception.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/exception.py	(original)
+++ pypy/dist/pypy/translator/llvm/exception.py	Thu Jan 12 21:36:46 2006
@@ -168,7 +168,7 @@
         codewriter.unwind()
 
     def llc_options(self):
-    	if sys.platform == 'linux2' and sys.maxint == 2**64-1:
+    	if sys.platform == 'linux2' and sys.maxint == 2**63-1:
 		s = ' -enable-ia64-dag-isel'
 	else:
 		s = ''
@@ -351,7 +351,7 @@
         codewriter.ret(returntype, self._noresult2(returntype))
 
     def llc_options(self):
-    	if sys.platform == 'linux2' and sys.maxint == 2**64-1:
+    	if sys.platform == 'linux2' and sys.maxint == 2**63-1:
 		s = '-enable-ia64-dag-isel'
 	else:
 		s = ''



More information about the Pypy-commit mailing list