[AMDGPU] Fix misleading SDWA verifier error. NFC.

The old error from GFX9 shall be updated to GFX9+.
This commit is contained in:
Stanislav Mekhanoshin 2020-08-13 11:22:01 -07:00
parent 1a8c9cd1d9
commit d25cb5a8a2
1 changed files with 2 additions and 1 deletions

View File

@ -3695,7 +3695,8 @@ bool SIInstrInfo::verifyInstruction(const MachineInstr &MI,
} else {
// No immediates on GFX9
if (!MO.isReg()) {
ErrInfo = "Only reg allowed as operands in SDWA instructions on GFX9";
ErrInfo =
"Only reg allowed as operands in SDWA instructions on GFX9+";
return false;
}
}