[llvm-commits] CVS: llvm/utils/TableGen/Record.cpp
Misha Brukman
brukman at cs.uiuc.edu
Fri Oct 8 07:59:16 PDT 2004
Changes in directory llvm/utils/TableGen:
Record.cpp updated: 1.36 -> 1.37
---
Log message:
Properly `quote' names, and don't forget to add the ending quote!
---
Diffs of the changes: (+24 -24)
Index: llvm/utils/TableGen/Record.cpp
diff -u llvm/utils/TableGen/Record.cpp:1.36 llvm/utils/TableGen/Record.cpp:1.37
--- llvm/utils/TableGen/Record.cpp:1.36 Thu Sep 30 13:27:39 2004
+++ llvm/utils/TableGen/Record.cpp Fri Oct 8 09:59:05 2004
@@ -609,8 +609,8 @@
Init *Record::getValueInit(const std::string &FieldName) const {
const RecordVal *R = getValue(FieldName);
if (R == 0 || R->getValue() == 0)
- throw "Record '" + getName() + "' does not have a field named '" +
- FieldName + "!\n";
+ throw "Record `" + getName() + "' does not have a field named `" +
+ FieldName + "'!\n";
return R->getValue();
}
@@ -622,12 +622,12 @@
std::string Record::getValueAsString(const std::string &FieldName) const {
const RecordVal *R = getValue(FieldName);
if (R == 0 || R->getValue() == 0)
- throw "Record '" + getName() + "' does not have a field named '" +
- FieldName + "!\n";
+ throw "Record `" + getName() + "' does not have a field named `" +
+ FieldName + "'!\n";
if (const StringInit *SI = dynamic_cast<const StringInit*>(R->getValue()))
return SI->getValue();
- throw "Record '" + getName() + "', field '" + FieldName +
+ throw "Record `" + getName() + "', field `" + FieldName +
"' does not have a string initializer!";
}
@@ -638,12 +638,12 @@
BitsInit *Record::getValueAsBitsInit(const std::string &FieldName) const {
const RecordVal *R = getValue(FieldName);
if (R == 0 || R->getValue() == 0)
- throw "Record '" + getName() + "' does not have a field named '" +
- FieldName + "!\n";
+ throw "Record `" + getName() + "' does not have a field named `" +
+ FieldName + "'!\n";
if (BitsInit *BI = dynamic_cast<BitsInit*>(R->getValue()))
return BI;
- throw "Record '" + getName() + "', field '" + FieldName +
+ throw "Record `" + getName() + "', field `" + FieldName +
"' does not have a BitsInit initializer!";
}
@@ -654,12 +654,12 @@
ListInit *Record::getValueAsListInit(const std::string &FieldName) const {
const RecordVal *R = getValue(FieldName);
if (R == 0 || R->getValue() == 0)
- throw "Record '" + getName() + "' does not have a field named '" +
- FieldName + "!\n";
+ throw "Record `" + getName() + "' does not have a field named `" +
+ FieldName + "'!\n";
if (ListInit *LI = dynamic_cast<ListInit*>(R->getValue()))
return LI;
- throw "Record '" + getName() + "', field '" + FieldName +
+ throw "Record `" + getName() + "', field `" + FieldName +
"' does not have a list initializer!";
}
@@ -670,12 +670,12 @@
int Record::getValueAsInt(const std::string &FieldName) const {
const RecordVal *R = getValue(FieldName);
if (R == 0 || R->getValue() == 0)
- throw "Record '" + getName() + "' does not have a field named '" +
- FieldName + "!\n";
+ throw "Record `" + getName() + "' does not have a field named `" +
+ FieldName + "'!\n";
if (IntInit *II = dynamic_cast<IntInit*>(R->getValue()))
return II->getValue();
- throw "Record '" + getName() + "', field '" + FieldName +
+ throw "Record `" + getName() + "', field `" + FieldName +
"' does not have a list initializer!";
}
@@ -686,12 +686,12 @@
Record *Record::getValueAsDef(const std::string &FieldName) const {
const RecordVal *R = getValue(FieldName);
if (R == 0 || R->getValue() == 0)
- throw "Record '" + getName() + "' does not have a field named '" +
- FieldName + "!\n";
+ throw "Record `" + getName() + "' does not have a field named `" +
+ FieldName + "'!\n";
if (DefInit *DI = dynamic_cast<DefInit*>(R->getValue()))
return DI->getDef();
- throw "Record '" + getName() + "', field '" + FieldName +
+ throw "Record `" + getName() + "', field `" + FieldName +
"' does not have a list initializer!";
}
@@ -702,12 +702,12 @@
bool Record::getValueAsBit(const std::string &FieldName) const {
const RecordVal *R = getValue(FieldName);
if (R == 0 || R->getValue() == 0)
- throw "Record '" + getName() + "' does not have a field named '" +
- FieldName + "!\n";
+ throw "Record `" + getName() + "' does not have a field named `" +
+ FieldName + "'!\n";
if (BitInit *BI = dynamic_cast<BitInit*>(R->getValue()))
return BI->getValue();
- throw "Record '" + getName() + "', field '" + FieldName +
+ throw "Record `" + getName() + "', field `" + FieldName +
"' does not have a bit initializer!";
}
@@ -718,12 +718,12 @@
DagInit *Record::getValueAsDag(const std::string &FieldName) const {
const RecordVal *R = getValue(FieldName);
if (R == 0 || R->getValue() == 0)
- throw "Record '" + getName() + "' does not have a field named '" +
- FieldName + "!\n";
+ throw "Record `" + getName() + "' does not have a field named `" +
+ FieldName + "'!\n";
if (DagInit *DI = dynamic_cast<DagInit*>(R->getValue()))
return DI;
- throw "Record '" + getName() + "', field '" + FieldName +
+ throw "Record `" + getName() + "', field `" + FieldName +
"' does not have a dag initializer!";
}
@@ -753,7 +753,7 @@
RecordKeeper::getAllDerivedDefinitions(const std::string &ClassName) const {
Record *Class = Records.getClass(ClassName);
if (!Class)
- throw "ERROR: Couldn't find the '" + ClassName + "' class!\n";
+ throw "ERROR: Couldn't find the `" + ClassName + "' class!\n";
std::vector<Record*> Defs;
for (std::map<std::string, Record*>::const_iterator I = getDefs().begin(),
More information about the llvm-commits
mailing list