Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:Packed

1246   case lltok::less: // Either vector or packed struct.
1251 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
1478 bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
1482 Result = StructType::get(Context, Elts, Packed);
1507 // If the type starts with '<', then it is either a packed struct or a vector.
1534 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
1543 /// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
1945 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
1953 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2538 return Error(ID.Loc, "packed'ness of initializer and type don't match");