1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Fixed potential bug where CurWord is not zeroed out in JumpToBit.

llvm-svn: 44469
This commit is contained in:
Ted Kremenek 2007-11-30 22:39:46 +00:00
parent 90c548af8e
commit 994b0d4b1a

View File

@ -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) {