Home
last modified time | relevance | path

Searched refs:lsquare (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLToken.h28 lsquare, enumerator
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp2912 case lltok::lsquare: in parseType()
3180 if (!EatIfPresent(lltok::lsquare)) in parseOptionalOperandBundles()
3896 case lltok::lsquare: { // Array Constant in parseValID()
7185 parseToken(lltok::lsquare, "expected '[' with switch table")) in parseSwitch()
7228 parseToken(lltok::lsquare, "expected '[' with indirectbr")) in parseIndirectBr()
7380 if (parseToken(lltok::lsquare, "expected '[' in catchpad/cleanuppad")) in parseExceptionArgs()
7474 if (parseToken(lltok::lsquare, "expected '[' with catchswitch labels")) in parseCatchSwitch()
7603 parseToken(lltok::lsquare, "expected '[' in callbr")) in parseCallBr()
7889 if (Lex.getKind() != lltok::lsquare) in parsePHI()
7900 if (parseToken(lltok::lsquare, "expected '[' in phi value list") || in parsePHI()
[all …]
H A DLLLexer.cpp231 case '[': return lltok::lsquare; in LexToken()