Searched defs:GepNode (Results 1 – 1 of 1) sorted by relevance
176 struct GepNode { struct177 enum {185 uint32_t Flags = 0;186 union {190 Value *Idx = nullptr;191 Type *PTy = nullptr; // Type of the pointer operand.193 GepNode() : Parent(nullptr) {} in GepNode() function194 GepNode(const GepNode *N) : Flags(N->Flags), Idx(N->Idx), PTy(N->PTy) { in GepNode() argument