diff options
author | MITSUNARI Shigeo <[email protected]> | 2021-06-17 15:56:39 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2021-06-17 15:56:39 +0900 |
commit | 2fb843c3287918038c8f76276a590c25cc7ec5ee (patch) | |
tree | 7ca0eb396f9f44f6d2cf6ceb4666fd27a370384c | |
parent | 413a66b44de9b623510395510b09a2ba19ef6f39 (diff) | |
download | xbyak-5.994.tar.gz xbyak-5.994.zip |
v5.994v5.994
-rw-r--r-- | xbyak/xbyak.h | 2 | ||||
-rw-r--r-- | xbyak/xbyak_mnemonic.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xbyak/xbyak.h b/xbyak/xbyak.h index 953674c..a760794 100644 --- a/xbyak/xbyak.h +++ b/xbyak/xbyak.h @@ -138,7 +138,7 @@ namespace Xbyak { enum { DEFAULT_MAX_CODE_SIZE = 4096, - VERSION = 0x5993 /* 0xABCD = A.BC(D) */ + VERSION = 0x5994 /* 0xABCD = A.BC(D) */ }; #ifndef MIE_INTEGER_TYPE_DEFINED diff --git a/xbyak/xbyak_mnemonic.h b/xbyak/xbyak_mnemonic.h index 3483d5d..9db2596 100644 --- a/xbyak/xbyak_mnemonic.h +++ b/xbyak/xbyak_mnemonic.h @@ -1,4 +1,4 @@ -const char *getVersionString() const { return "5.993"; } +const char *getVersionString() const { return "5.994"; } void adc(const Operand& op, uint32_t imm) { opRM_I(op, imm, 0x10, 2); } void adc(const Operand& op1, const Operand& op2) { opRM_RM(op1, op2, 0x10); } void adcx(const Reg32e& reg, const Operand& op) { opGen(reg, op, 0xF6, 0x66, isREG32_REG32orMEM, NONE, 0x38); } |