aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2022-05-12 10:56:13 +0900
committerMITSUNARI Shigeo <[email protected]>2022-05-12 10:56:13 +0900
commit905b31bab186045bcf7bbec917ba94d67d6db0fe (patch)
treed6e32deae32d8a20422c8dbc64f130fb39b98f9c
parent72d1ac1183f7673d9a07dc6099623cff3f2179dd (diff)
downloadxbyak-905b31bab186045bcf7bbec917ba94d67d6db0fe.tar.gz
xbyak-905b31bab186045bcf7bbec917ba94d67d6db0fe.zip
fix typo
-rw-r--r--sample/test_util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sample/test_util.cpp b/sample/test_util.cpp
index 175d5d8..7c930f0 100644
--- a/sample/test_util.cpp
+++ b/sample/test_util.cpp
@@ -86,8 +86,8 @@ void putCPUinfo()
{ Cpu::tWAITPKG, "waitpkg" },
{ Cpu::tCLFLUSHOPT, "clflushopt" },
{ Cpu::tCLDEMOTE, "cldemote" },
- { Cpu::tMOVDIRI, "movidiri" },
- { Cpu::tMOVDIR64B, "movidir64b" },
+ { Cpu::tMOVDIRI, "movdiri" },
+ { Cpu::tMOVDIR64B, "movdir64b" },
};
for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) {
if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str);