Improved consistency of number literals
All checks were successful
/ test (push) Successful in 19s

This commit is contained in:
Eduard Urbach 2025-07-03 13:45:39 +02:00
parent 47b4b1f1dd
commit cfc0f87c49
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
4 changed files with 5 additions and 5 deletions

View file

@ -282,7 +282,7 @@ func TestStoreRegister(t *testing.T) {
{x86.R12, 1, 8, x86.R3, []byte{0x49, 0x89, 0x5C, 0x24, 0x01}},
{x86.R12, 1, 4, x86.R3, []byte{0x41, 0x89, 0x5C, 0x24, 0x01}},
{x86.R12, 1, 2, x86.R3, []byte{0x66, 0x41, 0x89, 0x5C, 0x24, 0x01}},
{x86.R12, 1, 1, x86.R3, []byte{0x41, 0x88, 0x5C, 0x24, 01}},
{x86.R12, 1, 1, x86.R3, []byte{0x41, 0x88, 0x5C, 0x24, 0x01}},
{x86.R13, 1, 8, x86.R2, []byte{0x49, 0x89, 0x55, 0x01}},
{x86.R13, 1, 4, x86.R2, []byte{0x41, 0x89, 0x55, 0x01}},
{x86.R13, 1, 2, x86.R2, []byte{0x66, 0x41, 0x89, 0x55, 0x01}},