aboutsummaryrefslogtreecommitdiffhomepage
path: root/sample/test_util.cpp
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2022-05-12 10:21:47 +0900
committerMITSUNARI Shigeo <[email protected]>2022-05-12 10:21:47 +0900
commita6665996b93d3375eec12aedfe04cead69e118a9 (patch)
tree5d420646bf720aa8cdfb4cf7848787ada1856cc8 /sample/test_util.cpp
parent92ddc6dfd325f99219b17a7698143a76d3fcc506 (diff)
downloadxbyak-a6665996b93d3375eec12aedfe04cead69e118a9.tar.gz
xbyak-a6665996b93d3375eec12aedfe04cead69e118a9.zip
add detection of movdir64b
Diffstat (limited to 'sample/test_util.cpp')
-rw-r--r--sample/test_util.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/sample/test_util.cpp b/sample/test_util.cpp
index 0b5ce57..175d5d8 100644
--- a/sample/test_util.cpp
+++ b/sample/test_util.cpp
@@ -87,6 +87,7 @@ void putCPUinfo()
{ Cpu::tCLFLUSHOPT, "clflushopt" },
{ Cpu::tCLDEMOTE, "cldemote" },
{ Cpu::tMOVDIRI, "movidiri" },
+ { Cpu::tMOVDIR64B, "movidir64b" },
};
for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) {
if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str);