diff options
author | MITSUNARI Shigeo <[email protected]> | 2020-08-24 16:29:34 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2020-08-24 16:29:34 +0900 |
commit | be492be1a4979617d323fb572958d4478edfbb51 (patch) | |
tree | 416249842668ea11bdce7f0aabeb7219446b7425 /readme.txt | |
parent | d9696b54d1f21ef7009aee30d0dded7e6c94f461 (diff) | |
download | xbyak-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.txt')
-rw-r--r-- | readme.txt | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ - C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.941
+ C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.95
-----------------------------------------------------------------------------
◎概要
@@ -34,6 +34,7 @@ xbyak_bin2hex.h Linuxではmake installで/usr/local/include/xbyakにコピーされます。
-----------------------------------------------------------------------------
◎下位互換性の破れ
+* push byte, immまたはpush word, immが下位8bit, 16bitにキャストした値を使うように変更。
* (Windows) `<winsock2.h>`をincludeしなくなったので必要なら明示的にincludeしてください。
* XBYAK_USE_MMAP_ALLOCATORがデフォルトで有効になりました。従来の方式にする場合はXBYAK_DONT_USE_MMAP_ALLOCATORを定義してください。
* Xbyak::Errorの型をenumからclassに変更
|