0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-09-22 10:43:39 -04:00

Placated unreferenced types.

This commit is contained in:
Keith Kanios
2007-04-14 00:46:25 +00:00
parent 93f2e9a5a1
commit c7ae18dba1
9 changed files with 87 additions and 1 deletions

View File

@@ -205,6 +205,7 @@ static struct Section *create_section(char *name)
static void bin_cleanup(int debuginfo)
{
(void)debuginfo; /* placate optimizers */
struct Section *g, **gp;
struct Section *gs = NULL, **gsp;
struct Section *s, **sp;
@@ -1384,6 +1385,8 @@ static int32_t bin_segbase(int32_t segment)
static int bin_set_info(enum geninfo type, char **val)
{
(void)type;
(void)val;
return 0;
}