diff options
author | Eric Christopher <echristo@gmail.com> | 2013-07-30 22:35:06 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-07-30 22:35:06 +0000 |
commit | 63a5619410cfb92add9f3d161d5faef80bd5794e (patch) | |
tree | 70f4c519e59a42945f92f190c484d5a186611e78 /include | |
parent | b9db9cd6a9f8210a765ac34078e1ca5132439e53 (diff) | |
download | external_llvm-63a5619410cfb92add9f3d161d5faef80bd5794e.zip external_llvm-63a5619410cfb92add9f3d161d5faef80bd5794e.tar.gz external_llvm-63a5619410cfb92add9f3d161d5faef80bd5794e.tar.bz2 |
Make these just inline, not static inline.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187457 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/LEB128.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Support/LEB128.h b/include/llvm/Support/LEB128.h index ec23d57..458c470 100644 --- a/include/llvm/Support/LEB128.h +++ b/include/llvm/Support/LEB128.h @@ -20,7 +20,7 @@ namespace llvm { /// Utility function to encode a SLEB128 value to an output stream. -static inline void encodeSLEB128(int64_t Value, raw_ostream &OS) { +inline void encodeSLEB128(int64_t Value, raw_ostream &OS) { bool More; do { uint8_t Byte = Value & 0x7f; @@ -35,7 +35,7 @@ static inline void encodeSLEB128(int64_t Value, raw_ostream &OS) { } /// Utility function to encode a ULEB128 value to an output stream. -static inline void encodeULEB128(uint64_t Value, raw_ostream &OS, +inline void encodeULEB128(uint64_t Value, raw_ostream &OS, unsigned Padding = 0) { do { uint8_t Byte = Value & 0x7f; @@ -55,7 +55,7 @@ static 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. -static inline unsigned encodeULEB128(uint64_t Value, uint8_t *p, +inline unsigned encodeULEB128(uint64_t Value, uint8_t *p, unsigned Padding = 0) { uint8_t *orig_p = p; do { @@ -77,7 +77,7 @@ static inline unsigned encodeULEB128(uint64_t Value, uint8_t *p, /// Utility function to decode a ULEB128 value. -static inline uint64_t decodeULEB128(const uint8_t *p, unsigned *n = 0) { +inline uint64_t decodeULEB128(const uint8_t *p, unsigned *n = 0) { const uint8_t *orig_p = p; uint64_t Value = 0; unsigned Shift = 0; |