Remove 'inline' from functions not in headers

This commit is contained in:
Rangi
2021-04-13 10:27:08 -04:00
parent 25a8518fbf
commit c08cf783c8
9 changed files with 24 additions and 26 deletions

View File

@@ -53,12 +53,12 @@ struct CharmapStackEntry {
struct CharmapStackEntry *charmapStack;
static inline struct Charmap *charmap_Get(const char *name)
static struct Charmap *charmap_Get(const char *name)
{
return hash_GetElement(charmaps, name);
}
static inline struct Charmap *resizeCharmap(struct Charmap *map, size_t capacity)
static struct Charmap *resizeCharmap(struct Charmap *map, size_t capacity)
{
struct Charmap *new = realloc(map, sizeof(*map) + sizeof(*map->nodes) * capacity);
@@ -69,7 +69,7 @@ static inline struct Charmap *resizeCharmap(struct Charmap *map, size_t capacity
return new;
}
static inline void initNode(struct Charnode *node)
static void initNode(struct Charnode *node)
{
node->isTerminal = false;
memset(node->next, 0, sizeof(node->next));

View File

@@ -594,7 +594,7 @@ struct KeywordDictNode {
} keywordDict[351] = {0}; /* Make sure to keep this correct when adding keywords! */
/* Convert a char into its index into the dict */
static inline uint8_t dictIndex(char c)
static uint8_t dictIndex(char c)
{
/* Translate uppercase to lowercase (roughly) */
if (c > 0x60)

View File

@@ -335,7 +335,7 @@ static void freeDsArgList(struct DsArgList *args)
free(args->args);
}
static inline void failAssert(enum AssertionType type)
static void failAssert(enum AssertionType type)
{
switch (type) {
case ASSERT_FATAL:
@@ -349,7 +349,7 @@ static inline void failAssert(enum AssertionType type)
}
}
static inline void failAssertMsg(enum AssertionType type, char const *msg)
static void failAssertMsg(enum AssertionType type, char const *msg)
{
switch (type) {
case ASSERT_FATAL:

View File

@@ -41,7 +41,7 @@ struct UnionStackEntry {
/*
* A quick check to see if we have an initialized section
*/
static inline void checksection(void)
static void checksection(void)
{
if (pCurrentSection == NULL)
fatalerror("Code generation before SECTION directive\n");
@@ -51,7 +51,7 @@ static inline void checksection(void)
* A quick check to see if we have an initialized section that can contain
* this much initialized data
*/
static inline void checkcodesection(void)
static void checkcodesection(void)
{
checksection();
@@ -60,7 +60,7 @@ static inline void checkcodesection(void)
pCurrentSection->name);
}
static inline void checkSectionSize(struct Section const *sect, uint32_t size)
static void checkSectionSize(struct Section const *sect, uint32_t size)
{
uint32_t maxSize = maxsize[sect->type];
@@ -72,7 +72,7 @@ static inline void checkSectionSize(struct Section const *sect, uint32_t size)
/*
* Check if the section has grown too much.
*/
static inline void reserveSpace(uint32_t delta_size)
static void reserveSpace(uint32_t delta_size)
{
/*
* This check is here to trap broken code that generates sections that
@@ -474,7 +474,7 @@ void sect_AlignPC(uint8_t alignment, uint16_t offset)
}
}
static inline void growSection(uint32_t growth)
static void growSection(uint32_t growth)
{
curOffset += growth;
if (curOffset + loadOffset > pCurrentSection->size)
@@ -483,19 +483,19 @@ static inline void growSection(uint32_t growth)
currentLoadSection->size = curOffset;
}
static inline void writebyte(uint8_t byte)
static void writebyte(uint8_t byte)
{
pCurrentSection->data[sect_GetOutputOffset()] = byte;
growSection(1);
}
static inline void writeword(uint16_t b)
static void writeword(uint16_t b)
{
writebyte(b & 0xFF);
writebyte(b >> 8);
}
static inline void writelong(uint32_t b)
static void writelong(uint32_t b)
{
writebyte(b & 0xFF);
writebyte(b >> 8);
@@ -503,8 +503,7 @@ static inline void writelong(uint32_t b)
writebyte(b >> 24);
}
static inline void createPatch(enum PatchType type, struct Expression const *expr,
uint32_t pcShift)
static void createPatch(enum PatchType type, struct Expression const *expr, uint32_t pcShift)
{
out_CreatePatch(type, expr, sect_GetOutputOffset(), pcShift);
}

View File

@@ -269,7 +269,7 @@ struct Symbol const *sym_GetPC(void)
return PCSymbol;
}
static inline bool isReferenced(struct Symbol const *sym)
static bool isReferenced(struct Symbol const *sym)
{
return sym->ID != (uint32_t)-1;
}
@@ -680,7 +680,7 @@ void sym_SetExportAll(bool set)
exportall = set;
}
static inline struct Symbol *createBuiltinSymbol(char const *name)
static struct Symbol *createBuiltinSymbol(char const *name)
{
struct Symbol *sym = createsymbol(name);