From 004a833ab8ce7fda673b3c5dea68cc6dfb612cd9 Mon Sep 17 00:00:00 2001 From: Nate Begeman Date: Wed, 30 Nov 2005 18:37:14 +0000 Subject: Fix some copy and paste typos. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24540 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/TableGen/Record.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils/TableGen/Record.cpp') diff --git a/utils/TableGen/Record.cpp b/utils/TableGen/Record.cpp index 3bbb2d9116..13e4c985b6 100644 --- a/utils/TableGen/Record.cpp +++ b/utils/TableGen/Record.cpp @@ -741,7 +741,7 @@ int Record::getValueAsInt(const std::string &FieldName) const { if (IntInit *II = dynamic_cast(R->getValue())) return II->getValue(); throw "Record `" + getName() + "', field `" + FieldName + - "' does not have a list initializer!"; + "' does not have an int initializer!"; } /// getValueAsDef - This method looks up the specified field and returns its @@ -757,7 +757,7 @@ Record *Record::getValueAsDef(const std::string &FieldName) const { if (DefInit *DI = dynamic_cast(R->getValue())) return DI->getDef(); throw "Record `" + getName() + "', field `" + FieldName + - "' does not have a list initializer!"; + "' does not have a def initializer!"; } /// getValueAsBit - This method looks up the specified field and returns its -- cgit v1.2.3