[pypy-commit] pypy default: modify test (s390x) that used call_malloc_gc

plan_rich pypy.commits at gmail.com
Thu Jul 21 03:18:18 EDT 2016


Author: Richard Plangger <planrichi at gmail.com>
Branch: 
Changeset: r85786:bf2dbf7c5f0f
Date: 2016-07-21 09:17 +0200
http://bitbucket.org/pypy/pypy/changeset/bf2dbf7c5f0f/

Log:	modify test (s390x) that used call_malloc_gc

diff --git a/rpython/jit/backend/zarch/test/test_pool.py b/rpython/jit/backend/zarch/test/test_pool.py
--- a/rpython/jit/backend/zarch/test/test_pool.py
+++ b/rpython/jit/backend/zarch/test/test_pool.py
@@ -40,7 +40,7 @@
 
     def test_constant_in_call_malloc(self):
         c = ConstPtr(rffi.cast(llmemory.GCREF, 0xdeadbeef1234))
-        self.ensure_can_hold(rop.CALL_MALLOC_GC, [c], descr=self.calldescr)
+        self.ensure_can_hold(rop.COND_CALL, [c], descr=self.calldescr)
         assert self.const_in_pool(c)
         assert self.const_in_pool(ConstPtr(rffi.cast(llmemory.GCREF, 0xdeadbeef1234)))
 


More information about the pypy-commit mailing list