[pypy-svn] r20824 - pypy/dist/pypy/translator/llvm/module

arigo at codespeak.net arigo at codespeak.net
Wed Dec 7 11:25:48 CET 2005


Author: arigo
Date: Wed Dec  7 11:25:47 2005
New Revision: 20824

Modified:
   pypy/dist/pypy/translator/llvm/module/support.py
Log:
fix llvm for mwh's previous check-in.


Modified: pypy/dist/pypy/translator/llvm/module/support.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/module/support.py	(original)
+++ pypy/dist/pypy/translator/llvm/module/support.py	Wed Dec  7 11:25:47 2005
@@ -36,7 +36,7 @@
 internal fastcc %RPyString* %RPyString_FromString(sbyte* %s) {
     %lenu      = call ccc uint %strlen(sbyte* %s)
     %len       = cast uint %lenu to int
-    %rpy       = call fastcc %RPyString* %pypy_RPyString_New(int %len)
+    %rpy       = call fastcc %RPyString* %pypy_RPyString_New__Signed(int %len)
     %rpystrptr = getelementptr %RPyString* %rpy, int 0, uint 1, uint 1
     %rpystr    = cast [0 x sbyte]* %rpystrptr to sbyte*
 



More information about the Pypy-commit mailing list