diff options
author | MITSUNARI Shigeo <[email protected]> | 2021-08-15 17:33:44 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2021-08-17 11:30:29 +0900 |
commit | 10a1e575976dfec5ea2f7edeb86ee54dffba719c (patch) | |
tree | a2e0d1db89b215e9af059ae10e877c6617cd61ad | |
parent | 0a557a099efe0286554464e51cf19bdfbe77a7c2 (diff) | |
download | xbyak-10a1e575976dfec5ea2f7edeb86ee54dffba719c.tar.gz xbyak-10a1e575976dfec5ea2f7edeb86ee54dffba719c.zip |
v5.995v5.995
-rw-r--r-- | readme.md | 2 | ||||
-rw-r--r-- | xbyak/xbyak.h | 2 | ||||
-rw-r--r-- | xbyak/xbyak_mnemonic.h | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ [![Build Status](https://github.com/herumi/xbyak/actions/workflows/main.yml/badge.svg)](https://github.com/herumi/xbyak/actions/workflows/main.yml) -# Xbyak 5.994 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++ +# Xbyak 5.995 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++ ## Abstract diff --git a/xbyak/xbyak.h b/xbyak/xbyak.h index 1c82ded..91d6297 100644 --- a/xbyak/xbyak.h +++ b/xbyak/xbyak.h @@ -142,7 +142,7 @@ namespace Xbyak { enum { DEFAULT_MAX_CODE_SIZE = 4096, - VERSION = 0x5994 /* 0xABCD = A.BC(D) */ + VERSION = 0x5995 /* 0xABCD = A.BC(D) */ }; #ifndef MIE_INTEGER_TYPE_DEFINED diff --git a/xbyak/xbyak_mnemonic.h b/xbyak/xbyak_mnemonic.h index 9db2596..35b7049 100644 --- a/xbyak/xbyak_mnemonic.h +++ b/xbyak/xbyak_mnemonic.h @@ -1,4 +1,4 @@ -const char *getVersionString() const { return "5.994"; } +const char *getVersionString() const { return "5.995"; } 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); } |