diff options
author | Maxime Chevalier-Boisvert <[email protected]> | 2021-05-12 10:18:46 -0400 |
---|---|---|
committer | Alan Wu <[email protected]> | 2021-10-20 18:19:35 -0400 |
commit | 6b5d26dc788bfcf1d39db0bfe25645173507299c (patch) | |
tree | aa6e79094f52ed8ab427fc7432dc0d3fd5d96911 /yjit_asm.h | |
parent | 5c2f74fc32951fc038dca465985a4859c517ef47 (diff) |
Implement basic encodings for xchg
Diffstat (limited to 'yjit_asm.h')
-rw-r--r-- | yjit_asm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit_asm.h b/yjit_asm.h index 617a32aafc..15c670fec7 100644 --- a/yjit_asm.h +++ b/yjit_asm.h @@ -377,8 +377,8 @@ void shr(codeblock_t* cb, x86opnd_t opnd0, x86opnd_t opnd1); void sub(codeblock_t* cb, x86opnd_t opnd0, x86opnd_t opnd1); void test(codeblock_t* cb, x86opnd_t rm_opnd, x86opnd_t test_opnd); void ud2(codeblock_t* cb); +void xchg(codeblock_t* cb, x86opnd_t rm_opnd, x86opnd_t r_opnd); void xor(codeblock_t* cb, x86opnd_t opnd0, x86opnd_t opnd1); - void cb_write_lock_prefix(codeblock_t* cb); #endif |