decoder/asimd: Correct names of scalar exceptions

This commit is contained in:
MerryMage 2020-06-25 17:40:08 +01:00
parent 495f58eed8
commit 8a1f106dba

View file

@ -43,12 +43,12 @@ std::vector<ASIMDMatcher<V>> GetASIMDDecodeTable() {
const std::set<std::string> comes_last{
"VMLA (scalar)",
"VMLAL (scalar)",
"VQDMLAL/VQDMLSL",
"VQDMLAL/VQDMLSL (scalar)",
"VMUL (scalar)",
"VMULL (scalar)",
"VQDMULL",
"VQDMULH",
"VQRDMULH",
"VQDMULL (scalar)",
"VQDMULH (scalar)",
"VQRDMULH (scalar)",
};
std::stable_partition(table.begin(), table.end(), [&](const auto& matcher) {