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 DMCAsmLexer.h54 bool LexMotorolaIntegers = false; variable
178 void setLexMotorolaIntegers(bool V) { LexMotorolaIntegers = V; } in setLexMotorolaIntegers()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp36 LexMotorolaIntegers = MAI.shouldUseMotorolaIntegers(); in AsmLexer()
434 if (LexMotorolaIntegers && CurPtr[-1] == '$') { in LexDigit()
447 if (LexMotorolaIntegers && CurPtr[-1] == '%') { in LexDigit()
828 if (LexMotorolaIntegers && isHexDigit(*CurPtr)) in LexToken()
879 if (LexMotorolaIntegers && (*CurPtr == '0' || *CurPtr == '1')) { in LexToken()
/freebsd/contrib/llvm-project/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp196 static cl::opt<bool> LexMotorolaIntegers( variable
336 Parser->getLexer().setLexMotorolaIntegers(LexMotorolaIntegers); in AssembleInput()