From: Justin Bogner Date: Wed, 25 Jan 2017 06:02:10 +0000 (+0000) Subject: GlobalISel: Fix typo in error message X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=71721c067d44206c254d8f796c788fcad785698d;p=llvm GlobalISel: Fix typo in error message git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293023 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/GlobalISel/InstructionSelect.cpp b/lib/CodeGen/GlobalISel/InstructionSelect.cpp index 0db7fd9f1ae..4c40387eed3 100644 --- a/lib/CodeGen/GlobalISel/InstructionSelect.cpp +++ b/lib/CodeGen/GlobalISel/InstructionSelect.cpp @@ -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; }