forked from OSchip/llvm-project
[AMDGPU] Fix misleading SDWA verifier error. NFC.
The old error from GFX9 shall be updated to GFX9+.
This commit is contained in:
parent
1a8c9cd1d9
commit
d25cb5a8a2
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue