diff options
author | MITSUNARI Shigeo <[email protected]> | 2015-05-24 14:44:45 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2015-05-24 14:44:45 +0900 |
commit | 9d5bc03b264bc66434337db634af82e5f67db217 (patch) | |
tree | b678106aef738889dc5b3bae6b330a7b2a6bf060 /sample | |
parent | 62fd6d022acd83209e2a5af8ec359a3a1bed3a50 (diff) | |
download | xbyak-9d5bc03b264bc66434337db634af82e5f67db217.tar.gz xbyak-9d5bc03b264bc66434337db634af82e5f67db217.zip |
support detection of F16Cv4.82
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 d60c435..794dc8a 100644 --- a/sample/test_util.cpp +++ b/sample/test_util.cpp @@ -53,6 +53,7 @@ void putCPUinfo() { Cpu::tSMAP, "smap" }, { Cpu::tHLE, "hle" }, { Cpu::tRTM, "rtm" }, + { Cpu::tF16C, "f16c" }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str); |