the version format has changed from A.BC(D) to A.BC(.D)

This commit is contained in:
MITSUNARI Shigeo 2022-06-03 09:48:24 +09:00
parent 9357732aa2
commit 553246c164
2 changed files with 2 additions and 2 deletions

View file

@ -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);
}

View file

@ -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