Skip to content
This repository was archived by the owner on Mar 28, 2020. It is now read-only.

Commit 364a6f6

Browse files
committed
Add missing include from r272607 to fix modules build, and remove out-dated workaround from module map.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@272612 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent a1a1144 commit 364a6f6

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

include/llvm/Transforms/Scalar/JumpThreading.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include "llvm/ADT/SmallPtrSet.h"
1919
#include "llvm/ADT/SmallSet.h"
2020
#include "llvm/Analysis/BlockFrequencyInfo.h"
21+
#include "llvm/Analysis/BlockFrequencyInfoImpl.h"
2122
#include "llvm/Analysis/BranchProbabilityInfo.h"
2223
#include "llvm/Analysis/LazyValueInfo.h"
2324
#include "llvm/Analysis/TargetLibraryInfo.h"

include/llvm/module.modulemap

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ module LLVM_Analysis {
33
umbrella "Analysis"
44
module * { export * }
55

6-
// FIXME: Why is this excluded?
7-
exclude header "Analysis/BlockFrequencyInfoImpl.h"
8-
96
// This is intended for (repeated) textual inclusion.
107
textual header "Analysis/TargetLibraryInfo.def"
118
}
@@ -41,12 +38,6 @@ module LLVM_Backend {
4138
// This is intended for (repeated) textual inclusion.
4239
textual header "Target/TargetOpcodes.def"
4340
}
44-
45-
// FIXME: Where should this go?
46-
module Analysis_BlockFrequencyInfoImpl {
47-
header "Analysis/BlockFrequencyInfoImpl.h"
48-
export *
49-
}
5041
}
5142

5243
module LLVM_Bitcode { requires cplusplus umbrella "Bitcode" module * { export * } }

0 commit comments

Comments
 (0)