Skip to content

Commit 3eebe4c

Browse files
Fix Formatting
1 parent 83f183e commit 3eebe4c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

llvm/utils/TableGen/Basic/CodeGenIntrinsics.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)