We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efa5773 commit bcb98b9Copy full SHA for bcb98b9
lib/Serialization/ModuleSummaryIndexer.cpp
@@ -102,7 +102,7 @@ void FunctionSummaryIndexer::indexDirectFunctionCall(
102
103
void FunctionSummaryIndexer::indexIndirectFunctionCall(
104
const SILDeclRef &Callee, FunctionSummary::Call::KindTy Kind) {
105
- StringRef mangledName = Callee.mangle();
+ std::string mangledName = Callee.mangle();
106
GUID guid = getGUIDFromUniqueName(mangledName);
107
FunctionSummary::Call call(guid, mangledName, Kind);
108
TheSummary->addCall(call);
0 commit comments