mirror of
https://github.com/herumi/xbyak
synced 2024-11-20 16:06:14 -07:00
the version format has changed from A.BC(D) to A.BC(.D)
This commit is contained in:
parent
9357732aa2
commit
553246c164
2 changed files with 2 additions and 2 deletions
|
@ -252,7 +252,7 @@ void put()
|
|||
char buf[16];
|
||||
unsigned int v = VERSION;
|
||||
if (v & 0xF) {
|
||||
snprintf(buf, sizeof(buf), "%d.%02X%x", v >> 12, (v >> 4) & 0xFF, v & 0xF);
|
||||
snprintf(buf, sizeof(buf), "%d.%02X.%x", v >> 12, (v >> 4) & 0xFF, v & 0xF);
|
||||
} else {
|
||||
snprintf(buf, sizeof(buf), "%d.%02X", v >> 12, (v >> 4) & 0xFF);
|
||||
}
|
||||
|
|
|
@ -144,7 +144,7 @@ namespace Xbyak {
|
|||
|
||||
enum {
|
||||
DEFAULT_MAX_CODE_SIZE = 4096,
|
||||
VERSION = 0x6060 /* 0xABCD = A.BC(D) */
|
||||
VERSION = 0x6060 /* 0xABCD = A.BC(.D) */
|
||||
};
|
||||
|
||||
#ifndef MIE_INTEGER_TYPE_DEFINED
|
||||
|
|
Loading…
Reference in a new issue