diff options
author | Matthijs Kooijman <matthijs@stdin.nl> | 2008-10-27 15:59:43 +0000 |
---|---|---|
committer | Matthijs Kooijman <matthijs@stdin.nl> | 2008-10-27 15:59:43 +0000 |
commit | 68f9a9a5799ca017771b56e8f06fe809830abfa3 (patch) | |
tree | 6c84ab51331b1f4a2e9b7492ba346d68ed52b67b /utils | |
parent | 1e450d4efe652b56a781e7f72dc6ac644e75eee6 (diff) | |
download | external_llvm-68f9a9a5799ca017771b56e8f06fe809830abfa3.zip external_llvm-68f9a9a5799ca017771b56e8f06fe809830abfa3.tar.gz external_llvm-68f9a9a5799ca017771b56e8f06fe809830abfa3.tar.bz2 |
Remove redundant word in tblgen error message.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58250 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TableGen/CodeGenInstruction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/CodeGenInstruction.cpp b/utils/TableGen/CodeGenInstruction.cpp index 2a5b0bf9..a8f7476 100644 --- a/utils/TableGen/CodeGenInstruction.cpp +++ b/utils/TableGen/CodeGenInstruction.cpp @@ -166,7 +166,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr) } else if (!Rec->isSubClassOf("RegisterClass") && Rec->getName() != "ptr_rc" && Rec->getName() != "unknown") throw "Unknown operand class '" + Rec->getName() + - "' in instruction '" + R->getName() + "' instruction!"; + "' in '" + R->getName() + "' instruction!"; // Check that the operand has a name and that it's unique. if (DI->getArgName(i).empty()) |