Author: Maciej Fijalkowski <fij...@gmail.com>
Branch: jitframe-on-heap
Changeset: r60385:85c727af38e8
Date: 2013-01-23 21:11 +0200
http://bitbucket.org/pypy/pypy/changeset/85c727af38e8/

Log:    give up on running valgrind

diff --git a/rpython/jit/backend/x86/valgrind.py 
b/rpython/jit/backend/x86/valgrind.py
--- a/rpython/jit/backend/x86/valgrind.py
+++ b/rpython/jit/backend/x86/valgrind.py
@@ -26,5 +26,5 @@
 # ____________________________________________________________
 
 def discard_translations(data, size):
-    #if we_are_translated() and VALGRIND_DISCARD_TRANSLATIONS is not None:
-    VALGRIND_DISCARD_TRANSLATIONS(llmemory.cast_int_to_adr(data), size)
+    if we_are_translated() and VALGRIND_DISCARD_TRANSLATIONS is not None:
+        VALGRIND_DISCARD_TRANSLATIONS(llmemory.cast_int_to_adr(data), size)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to