Skip to content

Commit e14c8f2

Browse files
Fix formatting
1 parent 952341b commit e14c8f2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/utils/TableGen/Basic/CodeGenIntrinsics.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -506,10 +506,9 @@ void CodeGenIntrinsic::addPrettyPrintFunction(unsigned ArgIdx,
506506
auto It = llvm::find_if(PrettyPrintFunctions, [ArgIdx](const auto &Info) {
507507
return Info.ArgIdx == ArgIdx;
508508
});
509-
if (It != PrettyPrintFunctions.end())
509+
if (It != PrettyPrintFunctions.end())
510510
PrintFatalError(TheDef->getLoc(), "ArgInfo for argument " + Twine(ArgIdx) +
511511
" is already defined as '" +
512512
It->FuncName + "'");
513-
514513
PrettyPrintFunctions.emplace_back(ArgIdx, ArgName, FuncName);
515514
}

0 commit comments

Comments
 (0)