summaryrefslogtreecommitdiff
path: root/include/llvm/Support
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-07-22 18:26:18 +0000
committerEric Christopher <echristo@gmail.com>2013-07-22 18:26:18 +0000
commitf01742d03fb034e50f2a7717fb1325644e02ca72 (patch)
treed78fbd1a3c045ae6e5dd7dc6e67a0338ed57131f /include/llvm/Support
parentfa7399518817c456cdedc08475a8fc9bd1e6a900 (diff)
downloadllvm-f01742d03fb034e50f2a7717fb1325644e02ca72.tar.gz
llvm-f01742d03fb034e50f2a7717fb1325644e02ca72.tar.bz2
llvm-f01742d03fb034e50f2a7717fb1325644e02ca72.tar.xz
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186852 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r--include/llvm/Support/LEB128.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Support/LEB128.h b/include/llvm/Support/LEB128.h
index 802b4f354a..ec23d5747b 100644
--- a/include/llvm/Support/LEB128.h
+++ b/include/llvm/Support/LEB128.h
@@ -29,7 +29,7 @@ static inline void encodeSLEB128(int64_t Value, raw_ostream &OS) {
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_t Value, raw_ostream &OS,
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(uint64_t Value, uint8_t *p,
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);