[InlineAdvisor] Use one single quote

This commit is contained in:
Fangrui Song 2021-09-23 12:16:15 -07:00
parent 1aed7fcf09
commit 0bb767e7db
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ void DefaultInlineAdvice::recordUnsuccessfulInliningImpl(
ORE.emit([&]() {
return OptimizationRemarkMissed(DEBUG_TYPE, "NotInlined", DLoc, Block)
<< "'" << NV("Callee", Callee) << "' is not inlined into '"
<< "'" << NV("Caller", Caller)
<< NV("Caller", Caller)
<< "': " << NV("Reason", Result.getFailureReason());
});
}