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 33a6ce1 commit 4ad67e7Copy full SHA for 4ad67e7
llvm/lib/Debuginfod/Debuginfod.cpp
@@ -159,6 +159,10 @@ Expected<std::string> getCachedOrDownloadDebuginfo(BuildIDRef ID) {
159
return getCachedOrDownloadArtifact(getDebuginfodCacheKey(UrlPath), UrlPath);
160
}
161
162
+Expected<std::string> getCachedOrDownloadDebuginfo(BuildIDRef ID) {
163
+ std::string UrlPath = getDebuginfodDebuginfoUrlPath(ID);
164
+ return getCachedOrDownloadArtifact(getDebuginfodCacheKey(UrlPath), UrlPath);
165
+}
166
// General fetching function.
167
Expected<std::string> getCachedOrDownloadArtifact(StringRef UniqueKey,
168
StringRef UrlPath) {
0 commit comments