mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 05:40:09 +00:00
[lld][LoongArch] Fix handleUleb128
(cherry picked from commit a41bcb3930534ef1525b4fc30e53e818b39e2b60)
This commit is contained in:
parent
b95ea2e51b
commit
edbe7fa5fe
@ -159,8 +159,9 @@ static bool isJirl(uint32_t insn) {
|
||||
static void handleUleb128(uint8_t *loc, uint64_t val) {
|
||||
const uint32_t maxcount = 1 + 64 / 7;
|
||||
uint32_t count;
|
||||
uint64_t orig = decodeULEB128(loc, &count);
|
||||
if (count > maxcount)
|
||||
const char *error = nullptr;
|
||||
uint64_t orig = decodeULEB128(loc, &count, nullptr, &error);
|
||||
if (count > maxcount || (count == maxcount && error))
|
||||
errorOrWarn(getErrorLocation(loc) + "extra space for uleb128");
|
||||
uint64_t mask = count < maxcount ? (1ULL << 7 * count) - 1 : -1ULL;
|
||||
encodeULEB128((orig + val) & mask, loc, count);
|
||||
|
Loading…
Reference in New Issue
Block a user