[llvm] 450d130 - [Debuginfod] Restore a couple of includes
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 4 14:13:51 PDT 2025
Author: Kazu Hirata
Date: 2025-06-04T14:13:45-07:00
New Revision: 450d1307fe041882fade93ab3593dfed320e568a
URL: https://github.com/llvm/llvm-project/commit/450d1307fe041882fade93ab3593dfed320e568a
DIFF: https://github.com/llvm/llvm-project/commit/450d1307fe041882fade93ab3593dfed320e568a.diff
LOG: [Debuginfod] Restore a couple of includes
This patch adds back a couple of includes to HTTPClient.cpp.
A breakage has been reported in:
https://github.com/llvm/llvm-project/issues/142852
Added:
Modified:
llvm/lib/Debuginfod/HTTPClient.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Debuginfod/HTTPClient.cpp b/llvm/lib/Debuginfod/HTTPClient.cpp
index 1ad62afcd003e..4cca250746a59 100644
--- a/llvm/lib/Debuginfod/HTTPClient.cpp
+++ b/llvm/lib/Debuginfod/HTTPClient.cpp
@@ -15,7 +15,9 @@
#include "llvm/Debuginfod/HTTPClient.h"
#include "llvm/ADT/APInt.h"
#include "llvm/ADT/StringRef.h"
+#include "llvm/Support/Errc.h"
#include "llvm/Support/Error.h"
+#include "llvm/Support/MemoryBuffer.h"
#ifdef LLVM_ENABLE_CURL
#include <curl/curl.h>
#endif
More information about the llvm-commits
mailing list