From: Eric Christopher Date: Thu, 1 Aug 2013 01:38:16 +0000 (+0000) Subject: Formatting. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a8d49794e48aaea2c3ffb9d8105538ec2fa48cd0;p=platform%2Fupstream%2Fllvm.git Formatting. llvm-svn: 187554 --- diff --git a/llvm/include/llvm/Support/LEB128.h b/llvm/include/llvm/Support/LEB128.h index 458c470..3d73792 100644 --- a/llvm/include/llvm/Support/LEB128.h +++ b/llvm/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;