Home
last modified time | relevance | path

Searched refs:AllowAt (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp717 bool AllowAt = getLexer().getAllowAtInIdentifier(); in parseDirectiveType() local
718 if (!AllowAt && in parseDirectiveType()
722 make_scope_exit([&]() { getLexer().setAllowAtInIdentifier(AllowAt); }); in parseDirectiveType()
H A DAsmLexer.cpp228 static bool isIdentifierChar(char C, bool AllowAt, bool AllowHash) { in isIdentifierChar() argument
230 (AllowAt && C == '@') || (AllowHash && C == '#'); in isIdentifierChar()