mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Fix a nasty off-by one error that only manifests with 64-bit word size (which is
not enabled yet). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174803 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b24f5b7c08
commit
a32bd682a0
@ -334,7 +334,7 @@ public:
|
|||||||
|
|
||||||
// Skip over any bits that are already consumed.
|
// Skip over any bits that are already consumed.
|
||||||
if (WordBitNo) {
|
if (WordBitNo) {
|
||||||
if (sizeof(word_t) > 4)
|
if (sizeof(word_t) >= 4)
|
||||||
Read64(WordBitNo);
|
Read64(WordBitNo);
|
||||||
else
|
else
|
||||||
Read(WordBitNo);
|
Read(WordBitNo);
|
||||||
|
Loading…
Reference in New Issue
Block a user