Skip to content

Commit 2f05b4e

Browse files
committed
Fix invalid whitespace character
1 parent 793cde7 commit 2f05b4e

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

llvm/lib/Target/AArch64/AArch64ISelLowering.cpp

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9034,21 +9034,21 @@ AArch64TargetLowering::LowerCall(CallLoweringInfo &CLI,
90349034
CalleeAttrs = SMEAttrs(ES->getSymbol());
90359035

90369036
auto DescribeCallsite =
9037-
[&](OptimizationRemarkAnalysis &R) -> OptimizationRemarkAnalysis & {
9038-
R << "call from '" << ore::NV("Caller", MF.getName()) << "' to '";
9039-
if (auto *ES = dyn_cast<ExternalSymbolSDNode>(CLI.Callee)) {
9040-
R << ore::NV("Callee", ES->getSymbol());
9041-
}
9042-
 else if (CLI.CB) {
9043-
const std::optional<StringRef> CalleeName =
9044-
CLI.CB->getCalledFunctionName();
9045-
R << ore::NV("Callee", CalleeName.value_or("unknown callee"));
9046-
}
9047-
else {
9048-
R << "unknown callee";
9049-
}
9050-
R << "'";
9051-
return R;
9037+
[&](OptimizationRemarkAnalysis &R) -> OptimizationRemarkAnalysis & {
9038+
R << "call from '" << ore::NV("Caller", MF.getName()) << "' to '";
9039+
if (auto *ES = dyn_cast<ExternalSymbolSDNode>(CLI.Callee)) {
9040+
R << ore::NV("Callee", ES->getSymbol());
9041+
}
9042+
else if (CLI.CB) {
9043+
const std::optional<StringRef> CalleeName =
9044+
CLI.CB->getCalledFunctionName();
9045+
R << ore::NV("Callee", CalleeName.value_or("unknown callee"));
9046+
}
9047+
else {
9048+
R << "unknown callee";
9049+
}
9050+
R << "'";
9051+
return R;
90529052
};
90539053

90549054
bool RequiresLazySave = CallerAttrs.requiresLazySave(CalleeAttrs);

0 commit comments

Comments
 (0)