Home
last modified time | relevance | path

Searched defs:TrivialPair (Results 1 – 1 of 1) sorted by relevance

/llvm-project/llvm/unittests/ADT/
H A DFoldingSet.cpp58 struct TrivialPair : public FoldingSetNode { struct
59 unsigned Key = 0;
60 unsigned Value = 0;
61 TrivialPair(unsigned K, unsigned V) : FoldingSetNode(), Key(K), Value(V) {} in TrivialPair() argument
63 void Profile(FoldingSetNodeID &ID) const { in Profile()