diff options
author | MITSUNARI Shigeo <[email protected]> | 2023-07-19 09:28:00 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2023-07-19 09:28:00 +0900 |
commit | 60e71402e66c3f80511432d9f2afd055a6a7b7ac (patch) | |
tree | eaa865713ea66ac1878658c978e6dad73a881672 | |
parent | 79854aa081ca60f925dccbd63427227490d7f156 (diff) | |
download | xbyak-60e71402e66c3f80511432d9f2afd055a6a7b7ac.tar.gz xbyak-60e71402e66c3f80511432d9f2afd055a6a7b7ac.zip |
reorder
-rw-r--r-- | xbyak/xbyak_util.h | 2 |
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; |