diff options
| author | grischka <grischka> | 2009-05-11 18:46:39 +0200 |
|---|---|---|
| committer | grischka <grischka> | 2009-05-11 18:46:39 +0200 |
| commit | 03c787d6ce8dbd6a0898995c47309f33d7d3490e (patch) | |
| tree | 660aa804daa59bf78bdf2e66ecc5bde6e8fa8bd8 /tcccoff.c | |
| parent | 40f5ce002e744591dc8de6f89545064ac726d595 (diff) | |
| download | tinycc-03c787d6ce8dbd6a0898995c47309f33d7d3490e.tar.gz tinycc-03c787d6ce8dbd6a0898995c47309f33d7d3490e.tar.bz2 | |
fix unused/uninitalized warnings
Diffstat (limited to 'tcccoff.c')
| -rw-r--r-- | tcccoff.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -84,6 +84,8 @@ int tcc_output_coff(TCCState *s1, FILE *f) Section *stext, *sdata, *sbss; int i, NSectionsToOutput = 0; + Coff_str_table = pCoff_str_table = NULL; + stext = FindSection(s1, ".text"); sdata = FindSection(s1, ".data"); sbss = FindSection(s1, ".bss"); |
