GlobalISel: Fix typo in error message

llvm-svn: 293023
This commit is contained in:
Justin Bogner 2017-01-25 06:02:10 +00:00
parent 60370e375a
commit 4844573eb1

View File

@ -146,7 +146,7 @@ bool InstructionSelect::runOnMachineFunction(MachineFunction &MF) {
: &*MRI.def_instr_begin(VReg);
if (!RC) {
if (TPC.isGlobalISelAbortEnabled())
reportSelectionError(MF, MI, "VReg as no regclass after selection");
reportSelectionError(MF, MI, "VReg has no regclass after selection");
Failed = true;
break;
}