aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2013-07-28 23:29:14 +0900
committerMITSUNARI Shigeo <[email protected]>2013-07-28 23:29:14 +0900
commit09295a432c9d3443cc96c8b48e5f5e044d88f03e (patch)
tree622c6b498f7192e175588c8ff230ab2621db6818 /test
parentdb1cbb34454460dd3593f430178cbdf2fe4cd615 (diff)
downloadxbyak-09295a432c9d3443cc96c8b48e5f5e044d88f03e.tar.gz
xbyak-09295a432c9d3443cc96c8b48e5f5e044d88f03e.zip
fix test ; move call (16bit) to 32bit-mode test
Diffstat (limited to 'test')
-rw-r--r--test/make_nm.cpp4
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().