Skip to content

Commit 2a2432e

Browse files
committed
[NFC] Make Assume2KnowledgeMap's typedef more precise
1 parent a49f538 commit 2a2432e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/include/llvm/Analysis/AssumeBundleQueries.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
#include "llvm/ADT/DenseMap.h"
2121

2222
namespace llvm {
23-
class IntrinsicInst;
2423
class AssumptionCache;
2524
class DominatorTree;
2625

@@ -78,7 +77,7 @@ struct MinMax {
7877
/// (=knowledge) that is encoded in them. How the value range is interpreted
7978
/// depends on the RetainedKnowledgeKey that was used to get this out of the
8079
/// RetainedKnowledgeMap.
81-
using Assume2KnowledgeMap = DenseMap<IntrinsicInst *, MinMax>;
80+
using Assume2KnowledgeMap = DenseMap<AssumeInst *, MinMax>;
8281

8382
using RetainedKnowledgeMap =
8483
DenseMap<RetainedKnowledgeKey, Assume2KnowledgeMap>;

0 commit comments

Comments
 (0)