From e3bab80e338ac81b5b911c6ebc513aeafc335ce5 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 28 Feb 2007 05:29:06 +0000 Subject: [PATCH] rename some CCActions git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34724 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/TableGen/CallingConvEmitter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/TableGen/CallingConvEmitter.cpp b/utils/TableGen/CallingConvEmitter.cpp index d15b1f9c60c..b85d828f9d7 100644 --- a/utils/TableGen/CallingConvEmitter.cpp +++ b/utils/TableGen/CallingConvEmitter.cpp @@ -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();