[pypy-commit] pypy arm-backend-2: raise an error when trying to execute read_timestamp

bivab noreply at buildbot.pypy.org
Thu Jul 19 08:57:36 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r56210:f12cd4512085
Date: 2012-07-16 16:19 +0200
http://bitbucket.org/pypy/pypy/changeset/f12cd4512085/

Log:	raise an error when trying to execute read_timestamp

diff --git a/pypy/jit/backend/arm/opassembler.py b/pypy/jit/backend/arm/opassembler.py
--- a/pypy/jit/backend/arm/opassembler.py
+++ b/pypy/jit/backend/arm/opassembler.py
@@ -1336,6 +1336,7 @@
     emit_op_convert_longlong_bytes_to_float = gen_emit_unary_float_op('longlong_bytes_to_float', 'VMOV_cc')
 
     def emit_op_read_timestamp(self, op, arglocs, regalloc, fcond):
+	assert 0, 'not supported'
         tmp = arglocs[0]
         res = arglocs[1]
         self.mc.MRC(15, 0, tmp.value, 15, 12, 1)


More information about the pypy-commit mailing list