Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DAsmLexer.h69 bool LexMotorolaIntegers = false; variable
184 void setLexMotorolaIntegers(bool V) { LexMotorolaIntegers = V; } in setLexMotorolaIntegers()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp116 LexMotorolaIntegers = MAI.shouldUseMotorolaIntegers(); in AsmLexer()
514 if (LexMotorolaIntegers && CurPtr[-1] == '$') { in LexDigit()
527 if (LexMotorolaIntegers && CurPtr[-1] == '%') { in LexDigit()
912 if (LexMotorolaIntegers && isHexDigit(*CurPtr)) in LexToken()
963 if (LexMotorolaIntegers && (*CurPtr == '0' || *CurPtr == '1')) { in LexToken()
/freebsd/contrib/llvm-project/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp209 static cl::opt<bool> LexMotorolaIntegers( variable
353 Parser->getLexer().setLexMotorolaIntegers(LexMotorolaIntegers); in AssembleInput()