summaryrefslogtreecommitdiffstats
path: root/llvm/include
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-07-30 22:35:06 +0000
committerEric Christopher <echristo@gmail.com>2013-07-30 22:35:06 +0000
commitca6384aeebd79bcc9f9e9ee06eda62569efd106b (patch)
tree3962f62665629f5088ee0916fd148eefb69d1e3f /llvm/include
parent83afc1e43b78ceea236f166c1ceaa7b3183499a6 (diff)
downloadbcm5719-llvm-ca6384aeebd79bcc9f9e9ee06eda62569efd106b.tar.gz
bcm5719-llvm-ca6384aeebd79bcc9f9e9ee06eda62569efd106b.zip
Make these just inline, not static inline.
llvm-svn: 187457
Diffstat (limited to 'llvm/include')
-rw-r--r--llvm/include/llvm/Support/LEB128.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/include/llvm/Support/LEB128.h b/llvm/include/llvm/Support/LEB128.h
index ec23d5747be..458c470f7d0 100644
--- a/llvm/include/llvm/Support/LEB128.h
+++ b/llvm/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;
OpenPOWER on IntegriCloud