aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/Makefile
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2010-06-01 16:28:14 +0900
committerMITSUNARI Shigeo <[email protected]>2010-06-01 16:28:14 +0900
commitba203dc8948c9ea9766e900469ba9ec61b4ea933 (patch)
tree94f6a2bae930243e23fa4867acf46b9f4bfc1ac0 /test/Makefile
parent2965c4c0ba85ae92f61573142a667524736bcbdb (diff)
downloadxbyak-ba203dc8948c9ea9766e900469ba9ec61b4ea933.tar.gz
xbyak-ba203dc8948c9ea9766e900469ba9ec61b4ea933.zip
use 32bit extended encoding for mov(reg64, imm)
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 5dde116..d8e66ff 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -20,12 +20,17 @@ normalize_prefix: normalize_prefix.cpp
g++ $(CFLAGS) normalize_prefix.cpp -o $@
test_mmx: test_mmx.cpp
g++ $(CFLAGS) test_mmx.cpp -o $@ -lpthread
+jmp: jmp.cpp
+ g++ $(CFLAGS) jmp.cpp -o $@
-test: normalize_prefix
+test: normalize_prefix jmp
./test_nm.sh
./test_nm.sh Y
./test_nm.sh 64
./test_nm.sh Y64
+ ./test_address.sh
+ ./test_address.sh 64
+ ./jmp
clean:
rm -rf *.o $(TARGET)