Searched defs:GepNode (Results 1 – 1 of 1) sorted by relevance
176 struct GepNode { struct177 enum {197 uint32_t Flags = 0;198 union {202 Value *Idx = nullptr;203 Type *PTy = nullptr; // Type indexed by this node. For pointer nodes207 GepNode() : Parent(nullptr) {} in GepNode() function208 GepNode(const GepNode *N) : Flags(N->Flags), Idx(N->Idx), PTy(N->PTy) { in GepNode() function