mirror of
https://github.com/herumi/xbyak.git
synced 2025-06-03 09:07:42 +00:00
[fix] vfmadd supports {er}
This commit is contained in:
parent
395ac4b332
commit
b57da14da0
2 changed files with 38 additions and 38 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue