aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2023-07-19 09:28:00 +0900
committerMITSUNARI Shigeo <[email protected]>2023-07-19 09:28:00 +0900
commit60e71402e66c3f80511432d9f2afd055a6a7b7ac (patch)
treeeaa865713ea66ac1878658c978e6dad73a881672
parent79854aa081ca60f925dccbd63427227490d7f156 (diff)
downloadxbyak-60e71402e66c3f80511432d9f2afd055a6a7b7ac.tar.gz
xbyak-60e71402e66c3f80511432d9f2afd055a6a7b7ac.zip
reorder
-rw-r--r--xbyak/xbyak_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbyak/xbyak_util.h b/xbyak/xbyak_util.h
index 12c8b36..a58a93d 100644
--- a/xbyak/xbyak_util.h
+++ b/xbyak/xbyak_util.h
@@ -527,13 +527,13 @@ public:
getCpuid(1, data);
if (ECX & (1U << 0)) type_ |= tSSE3;
+ if (ECX & (1U << 1)) type_ |= tPCLMULQDQ;
if (ECX & (1U << 9)) type_ |= tSSSE3;
if (ECX & (1U << 19)) type_ |= tSSE41;
if (ECX & (1U << 20)) type_ |= tSSE42;
if (ECX & (1U << 22)) type_ |= tMOVBE;
if (ECX & (1U << 23)) type_ |= tPOPCNT;
if (ECX & (1U << 25)) type_ |= tAESNI;
- if (ECX & (1U << 1)) type_ |= tPCLMULQDQ;
if (ECX & (1U << 26)) type_ |= tXSAVE;
if (ECX & (1U << 27)) type_ |= tOSXSAVE;
if (ECX & (1U << 30)) type_ |= tRDRAND;