aboutsummaryrefslogtreecommitdiffhomepage
path: root/readme.md
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2020-08-24 16:29:34 +0900
committerMITSUNARI Shigeo <[email protected]>2020-08-24 16:29:34 +0900
commitbe492be1a4979617d323fb572958d4478edfbb51 (patch)
tree416249842668ea11bdce7f0aabeb7219446b7425 /readme.md
parentd9696b54d1f21ef7009aee30d0dded7e6c94f461 (diff)
downloadxbyak-be492be1a4979617d323fb572958d4478edfbb51.tar.gz
xbyak-be492be1a4979617d323fb572958d4478edfbb51.zip
change the behavior of push((byte|word), imm) to cast imm to int8_t/int16_t
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/readme.md b/readme.md
index dec8fec..02261af 100644
--- a/readme.md
+++ b/readme.md
@@ -1,6 +1,6 @@
[![Build Status](https://travis-ci.org/herumi/xbyak.png)](https://travis-ci.org/herumi/xbyak)
-# Xbyak 5.941 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++
+# Xbyak 5.95 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++
## Abstract
@@ -16,6 +16,7 @@ Use `and_()`, `or_()`, ... instead of `and()`, `or()`.
If you want to use them, then specify `-fno-operator-names` option to gcc/clang.
### News
+- (break backward compatibility) `push(byte, imm)` (resp. `push(word, imm)`) forces to cast `imm` to 8(resp. 16) bit.
- (Windows) `#include <winsock2.h>` has been removed from xbyak.h, so add it explicitly if you need it.
- support exception-less mode see. [Exception-less mode](#exception-less-mode)
- `XBYAK_USE_MMAP_ALLOCATOR` will be defined on Linux/macOS unless `XBYAK_DONT_USE_MMAP_ALLOCATOR` is defined.