[llvm] r186852 - Fix typo.
Eric Christopher
echristo at gmail.com
Mon Jul 22 11:26:18 PDT 2013
Author: echristo
Date: Mon Jul 22 13:26:18 2013
New Revision: 186852
URL: http://llvm.org/viewvc/llvm-project?rev=186852&view=rev
Log:
Fix typo.
Modified:
llvm/trunk/include/llvm/Support/LEB128.h
Modified: llvm/trunk/include/llvm/Support/LEB128.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/LEB128.h?rev=186852&r1=186851&r2=186852&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/LEB128.h (original)
+++ llvm/trunk/include/llvm/Support/LEB128.h Mon Jul 22 13:26:18 2013
@@ -29,7 +29,7 @@ static inline void encodeSLEB128(int64_t
More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
((Value == -1) && ((Byte & 0x40) != 0))));
if (More)
- Byte |= 0x80; // Mark this byte that that more bytes will follow.
+ Byte |= 0x80; // Mark this byte to show that more bytes will follow.
OS << char(Byte);
} while (More);
}
@@ -41,7 +41,7 @@ static inline void encodeULEB128(uint64_
uint8_t Byte = Value & 0x7f;
Value >>= 7;
if (Value != 0 || Padding != 0)
- Byte |= 0x80; // Mark this byte that that more bytes will follow.
+ Byte |= 0x80; // Mark this byte to show that more bytes will follow.
OS << char(Byte);
} while (Value != 0);
@@ -62,7 +62,7 @@ static inline unsigned encodeULEB128(uin
uint8_t Byte = Value & 0x7f;
Value >>= 7;
if (Value != 0 || Padding != 0)
- Byte |= 0x80; // Mark this byte that that more bytes will follow.
+ Byte |= 0x80; // Mark this byte to show that more bytes will follow.
*p++ = Byte;
} while (Value != 0);
More information about the llvm-commits
mailing list