diff options
author | MITSUNARI Shigeo <[email protected]> | 2013-07-28 23:29:30 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2013-07-28 23:29:30 +0900 |
commit | a5f38587bdac5aefab997d4dddc2d93ba1b1be85 (patch) | |
tree | 227db04e4c0d57bb39eee85e74b43f8924039e7b /test | |
parent | a7f99db31742b118b123a5ae484695d7eaf6a05c (diff) | |
parent | 09295a432c9d3443cc96c8b48e5f5e044d88f03e (diff) | |
download | xbyak-a5f38587bdac5aefab997d4dddc2d93ba1b1be85.tar.gz xbyak-a5f38587bdac5aefab997d4dddc2d93ba1b1be85.zip |
Merge branch 'master' into newReg32e
Diffstat (limited to 'test')
-rw-r--r-- | test/make_nm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/make_nm.cpp b/test/make_nm.cpp index 45e7d47..97a60a3 100644 --- a/test/make_nm.cpp +++ b/test/make_nm.cpp @@ -437,12 +437,12 @@ class Test { put("call", REG64); #else put("jmp", REG32); - put("call", REG32); + put("call", REG16|REG32); #endif put("jmp", MEM); put("jmp", MEM); put("jmp", MEM); - put("call", REG16|MEM|MEM_ONLY_DISP); + put("call", MEM|MEM_ONLY_DISP); #ifndef USE_YASM // call(ptr [getCode() + 5]); means to construct the opecode of "call" // after calling getCode(). |