Searched defs:GepNode (Results 1 – 1 of 1) sorted by relevance
169 struct GepNode { struct170 enum {190 uint32_t Flags = 0;191 union {195 Value *Idx = nullptr;196 Type *PTy = nullptr; // Type indexed by this node. For pointer nodes200 GepNode() : Parent(nullptr) {} in GepNode() function201 GepNode(const GepNode *N) : Flags(N->Flags), Idx(N->Idx), PTy(N->PTy) { in GepNode() function