From 8a1f106dba9697fb2c5c4eb180f19edfd511c899 Mon Sep 17 00:00:00 2001 From: MerryMage Date: Thu, 25 Jun 2020 17:40:08 +0100 Subject: [PATCH] decoder/asimd: Correct names of scalar exceptions --- src/frontend/A32/decoder/asimd.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/frontend/A32/decoder/asimd.h b/src/frontend/A32/decoder/asimd.h index ce9726cd..b0134166 100644 --- a/src/frontend/A32/decoder/asimd.h +++ b/src/frontend/A32/decoder/asimd.h @@ -43,12 +43,12 @@ std::vector> GetASIMDDecodeTable() { const std::set 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) {