mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-16 08:29:08 +00:00
rename some CCActions
llvm-svn: 34724
This commit is contained in:
parent
049bfc87ce
commit
b7edd45f41
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user