Author: Manuel Jacob <[email protected]>
Branch: llvm-translation-backend
Changeset: r91033:2d857d1faf07
Date: 2017-04-10 18:10 +0200
http://bitbucket.org/pypy/pypy/changeset/2d857d1faf07/

Log:    Fix.

diff --git a/rpython/translator/llvm/genllvm.py 
b/rpython/translator/llvm/genllvm.py
--- a/rpython/translator/llvm/genllvm.py
+++ b/rpython/translator/llvm/genllvm.py
@@ -1377,7 +1377,7 @@
     def op_raw_malloc(self, result, size, zero):
         if zero.value is True:
             self.op_direct_call(result, get_repr(raw_calloc), size,
-                                ConstantRepr(LLVMInt, 1))
+                                ConstantRepr(LLVMSigned, 1))
         elif zero.value is False:
             self.op_direct_call(result, get_repr(raw_malloc), size)
         else:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to