summaryrefslogtreecommitdiff
path: root/lib/WindowsManifest
diff options
context:
space:
mode:
authorEric Beckmann <ecbeckmann@google.com>2017-09-14 23:01:13 +0000
committerEric Beckmann <ecbeckmann@google.com>2017-09-14 23:01:13 +0000
commitfa58033db5bbbcc8d0a9b39b4cc141557cb50a15 (patch)
tree013b8453f165a8a74d81433c6ce3f581097ac4bb /lib/WindowsManifest
parent44e437e6cc278a6797eff72faf6ce2be5ceb6e33 (diff)
Fix bug 34608 by moving private header out of public header.
WindowsManifestMerger.h should not include llvm/Config/config.h, since it is private. The include has been moved to the source instead. Summary: The checksums had already been placed in the IR, this patch allows MCCodeView to actually write it out to an MCStreamer. Move private config.h header dependency out of public header file. Addresses Bug 34608 Subscribers: javed.absar, hiraditya, llvm-commits Differential Revision: https://reviews.llvm.org/D37863 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@313312 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/WindowsManifest')
-rw-r--r--lib/WindowsManifest/WindowsManifestMerger.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/WindowsManifest/WindowsManifestMerger.cpp b/lib/WindowsManifest/WindowsManifestMerger.cpp
index f2f2187bbac..0a8abed230d 100644
--- a/lib/WindowsManifest/WindowsManifestMerger.cpp
+++ b/lib/WindowsManifest/WindowsManifestMerger.cpp
@@ -12,6 +12,7 @@
//===---------------------------------------------------------------------===//
#include "llvm/WindowsManifest/WindowsManifestMerger.h"
+#include "llvm/Config/config.h"
#include "llvm/Support/MemoryBuffer.h"
#include <map>