aboutsummaryrefslogtreecommitdiffhomepage
path: root/sample
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2022-11-30 12:08:10 +0900
committerMITSUNARI Shigeo <[email protected]>2022-11-30 12:08:10 +0900
commitdc792cc56b494e679fb99fbee4e4f27e6c42b7a7 (patch)
tree02f975bc2b16773ca2519b511fae9f87d3f76efb /sample
parent62be84cc87488b2c96a5504ad5dcc4758d7e43a2 (diff)
downloadxbyak-dc792cc56b494e679fb99fbee4e4f27e6c42b7a7.tar.gz
xbyak-dc792cc56b494e679fb99fbee4e4f27e6c42b7a7.zip
add detection of cmpccxadd
Diffstat (limited to 'sample')
-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 ef6e3fa..b87b803 100644
--- a/sample/test_util.cpp
+++ b/sample/test_util.cpp
@@ -94,6 +94,7 @@ void putCPUinfo(bool onlyCpuidFeature)
{ Cpu::tAVX_NE_CONVERT, "avx_ne_convert" },
{ Cpu::tAVX_IFMA, "avx_ifma" },
{ Cpu::tRAO_INT, "rao-int" },
+ { Cpu::tCMPCCXADD, "cmpccxadd" },
};
for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) {
if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str);