Searched defs:ManglingRule (Results 1 – 1 of 1) sorted by relevance
58 struct ManglingRule { struct59 StringRef const Name;60 unsigned char Lead[2];61 unsigned char Param[5];63 int maxLeadIndex() const { return (std::max)(Lead[0], Lead[1]); } in maxLeadIndex()64 int getNumLeads() const { return (Lead[0] ? 1 : 0) + (Lead[1] ? 1 : 0); } in getNumLeads()