[llvm] r187457 - Make these just inline, not static inline.
Eric Christopher
echristo at gmail.com
Tue Jul 30 15:35:07 PDT 2013
Author: echristo
Date: Tue Jul 30 17:35:06 2013
New Revision: 187457
URL: http://llvm.org/viewvc/llvm-project?rev=187457&view=rev
Log:
Make these just inline, not static inline.
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=187457&r1=187456&r2=187457&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/LEB128.h (original)
+++ llvm/trunk/include/llvm/Support/LEB128.h Tue Jul 30 17:35:06 2013
@@ -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
}
/// 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_
/// 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(uin
/// 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;
More information about the llvm-commits
mailing list