Author: Armin Rigo <ar...@tunes.org> Branch: Changeset: r45547:85d2142b7446 Date: 2011-07-13 14:29 +0200 http://bitbucket.org/pypy/pypy/changeset/85d2142b7446/
Log: Fix the test on 32-bit. diff --git a/pypy/jit/backend/x86/test/test_regloc.py b/pypy/jit/backend/x86/test/test_regloc.py --- a/pypy/jit/backend/x86/test/test_regloc.py +++ b/pypy/jit/backend/x86/test/test_regloc.py @@ -24,9 +24,14 @@ assert_encodes_as(cb64, "MOV16", (r8, ebx), '\x66\x41\x89\xD8') # 11 011 000 assert_encodes_as(cb64, "MOV16", (ebx, r8), '\x66\x44\x89\xC3') # 11 000 011 assert_encodes_as(cb64, "MOV16", (ecx, ebx), '\x66\x40\x89\xD9') - # XXX: What we are testing for here is actually not the most compact - # encoding. - assert_encodes_as(cb64, "MOV16", (ecx, ImmedLoc(12345)), '\x66\x40\xC7\xC1\x39\x30') + assert_encodes_as(cb64, "MOV16", (ecx, ImmedLoc(12345)), '\x66\xB9\x39\x30') + # for the next case we don't pick the most efficient encoding, but well + expected = '\x66\x40\xC7\xC1\xC7\xCF' # could be '\x66\xB9\xC7\xCF' + assert_encodes_as(cb64, "MOV16", (ecx, ImmedLoc(-12345)), expected) + assert_encodes_as(cb64, "MOV16", (r9, ImmedLoc(12345)), '\x66\x41\xB9\x39\x30') + # for the next case we don't pick the most efficient encoding, but well + expected = '\x66\x41\xC7\xC1\xC7\xCF' # could be '\x66\x41\xB9\xC7\xCF' + assert_encodes_as(cb64, "MOV16", (r9, ImmedLoc(-12345)), expected) assert_encodes_as(cb64, "MOV16", (AddressLoc(r13, ImmedLoc(0), 0, 0), ImmedLoc(12345)), '\x66\x41\xC7\x45\x00\x39\x30') def test_cmp_16(): _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit