Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions llvm/include/llvm/ADT/EquivalenceClasses.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ namespace llvm {
/// 5 1 2
///
template <class ElemTy> class EquivalenceClasses {
public:
/// ECValue - The EquivalenceClasses data structure is just a set of these.
/// Each of these represents a relation for a value. First it stores the
/// value itself. Next, it provides a "next pointer", which is used to
Expand Down Expand Up @@ -122,6 +123,7 @@ template <class ElemTy> class EquivalenceClasses {
}
};

private:
/// TheMapping - This implicitly provides a mapping from ElemTy values to the
/// ECValues, it just keeps the key as part of the value.
DenseMap<ElemTy, ECValue *> TheMapping;
Expand Down