diff options
author | MITSUNARI Shigeo <[email protected]> | 2022-05-12 10:00:37 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2022-05-12 10:00:37 +0900 |
commit | 9cdd40f5ec54c19efb317448ad6bea8223c6a5bb (patch) | |
tree | cda2f5155ee7919d78e47cb0764e080f747cc77d /sample | |
parent | 379f8bf376bc258d0f407e624e00fa71a6c9e0be (diff) | |
download | xbyak-9cdd40f5ec54c19efb317448ad6bea8223c6a5bb.tar.gz xbyak-9cdd40f5ec54c19efb317448ad6bea8223c6a5bb.zip |
add detection of movdiri
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 27b1cf0..0b5ce57 100644 --- a/sample/test_util.cpp +++ b/sample/test_util.cpp @@ -86,6 +86,7 @@ void putCPUinfo() { Cpu::tWAITPKG, "waitpkg" }, { Cpu::tCLFLUSHOPT, "clflushopt" }, { Cpu::tCLDEMOTE, "cldemote" }, + { Cpu::tMOVDIRI, "movidiri" }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str); |