From de56081d1f225de8b0aa41e268cd27c393e56811 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 24 Jun 2016 17:58:33 +0100 Subject: [PATCH] main: turn data segment back on so we produce all the needed bits --- Applications/SmallC/main.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Applications/SmallC/main.c b/Applications/SmallC/main.c index d9edbbf5..fbefff9d 100644 --- a/Applications/SmallC/main.c +++ b/Applications/SmallC/main.c @@ -206,7 +206,6 @@ int do_declarations(int stclass, TAG_SYMBOL *mtag, int is_struct) { void dumplits(void) { int j, k; -#ifndef TINY if (litptr == 0) return; print_label(litlab); @@ -224,14 +223,12 @@ void dumplits(void) { output_byte(','); } } -#endif } /** * dump all static variables */ void dumpglbs(void) { -#ifndef TINY int dim, i, list_size, line_count, value; if (!glbflag) return; @@ -289,10 +286,8 @@ void dumpglbs(void) { } current_symbol_table_idx++; } -#endif } -#ifndef TINY /** * dump struct data * @param symbol struct variable @@ -321,7 +316,6 @@ void dump_struct(SYMBOL *symbol, int position) { newline(); } } -#endif /** * report errors -- 2.34.1