Formatting.
authorEric Christopher <echristo@gmail.com>
Thu, 1 Aug 2013 01:38:16 +0000 (01:38 +0000)
committerEric Christopher <echristo@gmail.com>
Thu, 1 Aug 2013 01:38:16 +0000 (01:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187554 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/LEB128.h

index 458c470f7d060b781d2e2eb8b2960f8bba3494fe..3d7379250af4df7cd53f56477912545db1a8982d 100644 (file)
@@ -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;