diff options
author | MITSUNARI Shigeo <[email protected]> | 2024-10-08 14:19:12 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2024-10-08 14:19:12 +0900 |
commit | b57da14da0b0cdb39524c43fdb6648c754aede9b (patch) | |
tree | f77eefdffca40be805c34c4bd79c1effd10761f5 /gen | |
parent | 395ac4b33239c75cf441494398ad61edbf65d9c4 (diff) | |
download | xbyak-b57da14da0b0cdb39524c43fdb6648c754aede9b.tar.gz xbyak-b57da14da0b0cdb39524c43fdb6648c754aede9b.zip |
[fix] vfmadd supports {er}
Diffstat (limited to 'gen')
-rw-r--r-- | gen/gen_code.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gen/gen_code.cpp b/gen/gen_code.cpp index c315bed..a3b5437 100644 --- a/gen/gen_code.cpp +++ b/gen/gen_code.cpp @@ -1620,9 +1620,9 @@ void put() if (tbl[i].supportYMM) t |= T_YMM; const std::string suf = sufTbl[tbl[i].supportYMM ? 0 : 1][j]; if (suf == "pd") { - t |= T_B64; + t |= T_ER_Z | T_B64; } else if (suf == "ps") { - t |= T_B32; + t |= T_ER_Z | T_B32; } else if (suf == "sd") { t |= T_ER_X | T_N8; } else { // ss |