diff options
author | MITSUNARI Shigeo <[email protected]> | 2013-09-05 22:10:49 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2013-09-05 22:10:49 +0900 |
commit | bed8fae6e728cbb49b7f6a2cca6a0f9067339349 (patch) | |
tree | 0401e7126ff2423073fc1c504b63414b1ebf5506 /sample/test_util.cpp | |
parent | c2fde4e2a66d4c26cf0f7e8ad64b123ba67d33b9 (diff) | |
download | xbyak-bed8fae6e728cbb49b7f6a2cca6a0f9067339349.tar.gz xbyak-bed8fae6e728cbb49b7f6a2cca6a0f9067339349.zip |
add to detect enhanced rep movsb/stosb
Diffstat (limited to 'sample/test_util.cpp')
-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 1e637a0..6146731 100644 --- a/sample/test_util.cpp +++ b/sample/test_util.cpp @@ -47,6 +47,7 @@ void putCPUinfo() { Cpu::tBMI1, "bmi1" }, { Cpu::tBMI2, "bmi2" }, { Cpu::tLZCNT, "lzcnt" }, + { Cpu::tENHANCED_REP, "enh_rep" }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str); |