aboutsummaryrefslogtreecommitdiffhomepage
path: root/sample/test_util.cpp
diff options
context:
space:
mode:
authorRyan Houdek <[email protected]>2022-05-23 15:56:01 -0700
committerRyan Houdek <[email protected]>2022-05-23 15:57:32 -0700
commit0281129493eec9ed444537f4694be146eedbe9f4 (patch)
tree6e8843d2b026083648839aef2769ebf37c4bcf1c /sample/test_util.cpp
parentc88007b03e9eaac2d1671e61202f3272f24099c9 (diff)
downloadxbyak-0281129493eec9ed444537f4694be146eedbe9f4.tar.gz
xbyak-0281129493eec9ed444537f4694be146eedbe9f4.zip
add detection of clzero
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 7c930f0..0e9387e 100644
--- a/sample/test_util.cpp
+++ b/sample/test_util.cpp
@@ -88,6 +88,7 @@ void putCPUinfo()
{ Cpu::tCLDEMOTE, "cldemote" },
{ Cpu::tMOVDIRI, "movdiri" },
{ Cpu::tMOVDIR64B, "movdir64b" },
+ { Cpu::tCLZERO, "clzero" },
};
for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) {
if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str);