diff options
author | MITSUNARI Shigeo <[email protected]> | 2016-12-01 11:33:34 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2016-12-01 11:33:34 +0900 |
commit | d62f6fb28f3c7b3fafb201b2ce65b653b547659c (patch) | |
tree | 44481aeab81811aeef95e19dfaa9062124149d12 | |
parent | d50d40878452121b3b10b0c5595f5342f5b0f02d (diff) | |
download | xbyak-d62f6fb28f3c7b3fafb201b2ce65b653b547659c.tar.gz xbyak-d62f6fb28f3c7b3fafb201b2ce65b653b547659c.zip |
update version
-rw-r--r-- | xbyak/xbyak_mnemonic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbyak/xbyak_mnemonic.h b/xbyak/xbyak_mnemonic.h index 2fb71a0..34fd3ea 100644 --- a/xbyak/xbyak_mnemonic.h +++ b/xbyak/xbyak_mnemonic.h @@ -1,4 +1,4 @@ -const char *getVersionString() const { return "5.31"; } +const char *getVersionString() const { return "5.32"; } void adc(const Operand& op, uint32 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); } |