diff options
author | Ryan Houdek <[email protected]> | 2022-05-23 15:56:01 -0700 |
---|---|---|
committer | Ryan Houdek <[email protected]> | 2022-05-23 15:57:32 -0700 |
commit | 0281129493eec9ed444537f4694be146eedbe9f4 (patch) | |
tree | 6e8843d2b026083648839aef2769ebf37c4bcf1c /sample | |
parent | c88007b03e9eaac2d1671e61202f3272f24099c9 (diff) | |
download | xbyak-0281129493eec9ed444537f4694be146eedbe9f4.tar.gz xbyak-0281129493eec9ed444537f4694be146eedbe9f4.zip |
add detection of clzero
Diffstat (limited to 'sample')
-rw-r--r-- | sample/test_util.cpp | 1 |
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); |