diff options
author | Eric Christopher <echristo@gmail.com> | 2013-08-01 01:38:16 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-08-01 01:38:16 +0000 |
commit | 9d45f914f080e591e12787ac1c12b3819870076a (patch) | |
tree | 0160322156d4cbeda14a1a4a6004a078ce9e6996 /include | |
parent | d49475bebca630cd1be535eed2b3c4964209c30a (diff) | |
download | external_llvm-9d45f914f080e591e12787ac1c12b3819870076a.zip external_llvm-9d45f914f080e591e12787ac1c12b3819870076a.tar.gz external_llvm-9d45f914f080e591e12787ac1c12b3819870076a.tar.bz2 |
Formatting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187554 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/LEB128.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/LEB128.h b/include/llvm/Support/LEB128.h index 458c470..3d73792 100644 --- a/include/llvm/Support/LEB128.h +++ b/include/llvm/Support/LEB128.h @@ -36,7 +36,7 @@ inline void encodeSLEB128(int64_t Value, raw_ostream &OS) { /// Utility function to encode a ULEB128 value to an output stream. inline void encodeULEB128(uint64_t Value, raw_ostream &OS, - unsigned Padding = 0) { + unsigned Padding = 0) { do { uint8_t Byte = Value & 0x7f; Value >>= 7; @@ -56,7 +56,7 @@ inline void encodeULEB128(uint64_t Value, raw_ostream &OS, /// Utility function to encode a ULEB128 value to a buffer. Returns /// the length in bytes of the encoded value. inline unsigned encodeULEB128(uint64_t Value, uint8_t *p, - unsigned Padding = 0) { + unsigned Padding = 0) { uint8_t *orig_p = p; do { uint8_t Byte = Value & 0x7f; |