mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Fix bogus warning and simplify code
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10924 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
68e3dbc493
commit
cdaff32ef6
@ -509,21 +509,15 @@ void BytecodeParser::ParseCompactionTable(const unsigned char *&Buf,
|
||||
const unsigned char *End) {
|
||||
|
||||
while (Buf != End) {
|
||||
unsigned NumEntries;
|
||||
unsigned NumEntries = read_vbr_uint(Buf, End);
|
||||
unsigned Ty;
|
||||
|
||||
NumEntries = read_vbr_uint(Buf, End);
|
||||
switch (NumEntries & 3) {
|
||||
case 0:
|
||||
case 1:
|
||||
case 2:
|
||||
Ty = NumEntries >> 2;
|
||||
NumEntries &= 3;
|
||||
break;
|
||||
case 3:
|
||||
if ((NumEntries & 3) == 3) {
|
||||
NumEntries >>= 2;
|
||||
Ty = read_vbr_uint(Buf, End);
|
||||
break;
|
||||
} else {
|
||||
Ty = NumEntries >> 2;
|
||||
NumEntries &= 3;
|
||||
}
|
||||
|
||||
if (Ty >= CompactionTable.size())
|
||||
|
Loading…
x
Reference in New Issue
Block a user