Author: wenzhuman <[email protected]>
Branch: gc_no_cleanup_nursery
Changeset: r72955:6c460fe612a3
Date: 2014-08-21 19:28 -0400
http://bitbucket.org/pypy/pypy/changeset/6c460fe612a3/
Log: remove zero flag form jitframe malloc
diff --git a/rpython/jit/backend/llsupport/jitframe.py
b/rpython/jit/backend/llsupport/jitframe.py
--- a/rpython/jit/backend/llsupport/jitframe.py
+++ b/rpython/jit/backend/llsupport/jitframe.py
@@ -45,7 +45,7 @@
# detailed explanation how it is on your architecture
def jitframe_allocate(frame_info):
- frame = lltype.malloc(JITFRAME, frame_info.jfi_frame_depth, zero=True)
+ frame = lltype.malloc(JITFRAME, frame_info.jfi_frame_depth)
frame.jf_frame_info = frame_info
return frame
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit