1 //===- llvm/DebugInfod/DIFetcher.cpp - Debug info fetcher -----------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 /// This file defines a DIFetcher implementation for obtaining debug info
13 //===----------------------------------------------------------------------===//
15 #include "llvm/Debuginfod/DIFetcher.h"
17 #include "llvm/Debuginfod/Debuginfod.h"
22 DebuginfodDIFetcher::fetchBuildID(ArrayRef
<uint8_t> BuildID
) const {
23 Expected
<std::string
> PathOrErr
= getCachedOrDownloadDebuginfo(BuildID
);
26 consumeError(PathOrErr
.takeError());