[llvm] r187554 - Formatting.

Eric Christopher echristo at gmail.com
Wed Jul 31 18:38:16 PDT 2013


Author: echristo
Date: Wed Jul 31 20:38:16 2013
New Revision: 187554

URL: http://llvm.org/viewvc/llvm-project?rev=187554&view=rev
Log:
Formatting.

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=187554&r1=187553&r2=187554&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/LEB128.h (original)
+++ llvm/trunk/include/llvm/Support/LEB128.h Wed Jul 31 20:38:16 2013
@@ -36,7 +36,7 @@ inline void encodeSLEB128(int64_t Value,
 
 /// 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
 /// 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;





More information about the llvm-commits mailing list