Searched defs:GepNode (Results 1 – 1 of 1) sorted by relevance
156 struct GepNode { struct157 enum {164 uint32_t Flags;165 union {169 Value *Idx;170 Type *PTy; // Type of the pointer operand.172 GepNode() : Flags(0), Parent(0), Idx(0), PTy(0) {} in GepNode() argument173 GepNode(const GepNode *N) : Flags(N->Flags), Idx(N->Idx), PTy(N->PTy) { in GepNode() function