rename some CCActions
authorChris Lattner <sabre@nondot.org>
Wed, 28 Feb 2007 05:29:06 +0000 (05:29 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 28 Feb 2007 05:29:06 +0000 (05:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34724 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/CallingConvEmitter.cpp

index d15b1f9c60cce6429972fd1f5f36253d019f2d1f..b85d828f9d7c53f6ec8e30f59c236412b599239f 100644 (file)
@@ -66,7 +66,7 @@ void CallingConvEmitter::EmitAction(Record *Action,
   if (Action->isSubClassOf("CCPredicateAction")) {
     O << IndentStr << "if (";
     
-    if (Action->isSubClassOf("CCMatchType")) {
+    if (Action->isSubClassOf("CCIfType")) {
       ListInit *VTs = Action->getValueAsListInit("VTs");
       for (unsigned i = 0, e = VTs->getSize(); i != e; ++i) {
         Record *VT = VTs->getElementAsRecord(i);
@@ -74,7 +74,7 @@ void CallingConvEmitter::EmitAction(Record *Action,
         O << "LocVT == " << getEnumName(getValueType(VT));
       }
 
-    } else if (Action->isSubClassOf("CCMatchIf")) {
+    } else if (Action->isSubClassOf("CCIf")) {
       O << Action->getValueAsString("Predicate");
     } else {
       Action->dump();