diff options
author | MITSUNARI Shigeo <[email protected]> | 2022-12-08 08:17:12 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2022-12-08 08:17:12 +0900 |
commit | a1ac3750f9a639b5a6c6d6c7da4259b8d6790989 (patch) | |
tree | 90f4aead88be17b02758969ce667a40c4bda4ee0 /sample | |
parent | 124617ac952df2bc3c90e3a08a78d8d78625ff2c (diff) | |
parent | 5f4ba971f0293882dafd8336a6f3f7727f75a4ed (diff) | |
download | xbyak-a1ac3750f9a639b5a6c6d6c7da4259b8d6790989.tar.gz xbyak-a1ac3750f9a639b5a6c6d6c7da4259b8d6790989.zip |
Merge branch 'dev'v6.68
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 b87b803..96e9d21 100644 --- a/sample/test_util.cpp +++ b/sample/test_util.cpp @@ -95,6 +95,7 @@ void putCPUinfo(bool onlyCpuidFeature) { Cpu::tAVX_IFMA, "avx_ifma" }, { Cpu::tRAO_INT, "rao-int" }, { Cpu::tCMPCCXADD, "cmpccxadd" }, + { Cpu::tPREFETCHITI, "prefetchiti" }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str); |