Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
DMCAsmLexer.h56 bool LexMotorolaIntegers = false; variable
180 void setLexMotorolaIntegers(bool V) { LexMotorolaIntegers = V; } in setLexMotorolaIntegers()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
DAsmLexer.cpp36 LexMotorolaIntegers = MAI.shouldUseMotorolaIntegers(); in AsmLexer()
433 if (LexMotorolaIntegers && CurPtr[-1] == '$') { in LexDigit()
446 if (LexMotorolaIntegers && CurPtr[-1] == '%') { in LexDigit()
826 if (LexMotorolaIntegers && isHexDigit(*CurPtr)) in LexToken()
870 if (LexMotorolaIntegers && (*CurPtr == '0' || *CurPtr == '1')) { in LexToken()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-mc/
Dllvm-mc.cpp207 static cl::opt<bool> LexMotorolaIntegers( variable
344 Parser->getLexer().setLexMotorolaIntegers(LexMotorolaIntegers); in AssembleInput()