mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
AsmParser: Verifier that the contents of a hex integer are hex
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223856 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
df7bc4ec73
commit
4f5424e74e
@ -757,7 +757,13 @@ lltok::Kind LLLexer::LexIdentifier() {
|
||||
isxdigit(static_cast<unsigned char>(TokStart[3]))) {
|
||||
int len = CurPtr-TokStart-3;
|
||||
uint32_t bits = len * 4;
|
||||
APInt Tmp(bits, StringRef(TokStart+3, len), 16);
|
||||
StringRef HexStr(TokStart + 3, len);
|
||||
if (!std::all_of(HexStr.begin(), HexStr.end(), isxdigit)) {
|
||||
// Bad token, return it as an error.
|
||||
CurPtr = TokStart+3;
|
||||
return lltok::Error;
|
||||
}
|
||||
APInt Tmp(bits, HexStr, 16);
|
||||
uint32_t activeBits = Tmp.getActiveBits();
|
||||
if (activeBits > 0 && activeBits < bits)
|
||||
Tmp = Tmp.trunc(activeBits);
|
||||
|
Loading…
x
Reference in New Issue
Block a user