rename some CCActions

llvm-svn: 34724
diff --git a/llvm/utils/TableGen/CallingConvEmitter.cpp b/llvm/utils/TableGen/CallingConvEmitter.cpp
index d15b1f9..b85d828 100644
--- a/llvm/utils/TableGen/CallingConvEmitter.cpp
+++ b/llvm/utils/TableGen/CallingConvEmitter.cpp
@@ -66,7 +66,7 @@
   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 @@
         O << "LocVT == " << getEnumName(getValueType(VT));
       }
 
-    } else if (Action->isSubClassOf("CCMatchIf")) {
+    } else if (Action->isSubClassOf("CCIf")) {
       O << Action->getValueAsString("Predicate");
     } else {
       Action->dump();