mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
Fixed potential bug where CurWord is not zeroed out in JumpToBit.
llvm-svn: 44469
This commit is contained in:
parent
90c548af8e
commit
994b0d4b1a
@ -122,6 +122,7 @@ public:
|
||||
// Move the cursor to the right word.
|
||||
NextChar = FirstChar+ByteNo;
|
||||
BitsInCurWord = 0;
|
||||
CurWord = 0;
|
||||
|
||||
// Skip over any bits that are already consumed.
|
||||
if (WordBitNo) {
|
||||
|
Loading…
Reference in New Issue
Block a user