File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
llvm/utils/TableGen/Basic Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -455,16 +455,16 @@ void CodeGenIntrinsic::setProperty(const Record *R) {
455455 const ListInit *Properties = R->getValueAsListInit (" Properties" );
456456 StringRef ArgName;
457457 StringRef FuncName;
458-
458+
459459 for (const Init *PropInit : Properties->getElements ()) {
460460 if (const DefInit *PropDef = dyn_cast<DefInit>(PropInit)) {
461461 const Record *PropRec = PropDef->getDef ();
462-
463- if (PropRec->isSubClassOf (" ArgName" ))
462+
463+ if (PropRec->isSubClassOf (" ArgName" ))
464464 ArgName = PropRec->getValueAsString (" Name" );
465- else if (PropRec->isSubClassOf (" ImmArgPrinter" ))
465+ else if (PropRec->isSubClassOf (" ImmArgPrinter" ))
466466 FuncName = PropRec->getValueAsString (" FuncName" );
467- else
467+ else
468468 PrintFatalError (PropRec->getLoc (),
469469 " Unknown ArgProperty type: " + PropRec->getName ());
470470 }
You can’t perform that action at this time.
0 commit comments