diff options
| author | Joe Soroka <gits@joesoroka.com> | 2011-03-07 01:05:09 -0800 |
|---|---|---|
| committer | Joe Soroka <gits@joesoroka.com> | 2011-03-07 01:05:09 -0800 |
| commit | 4fbe3cda330e6ac307c37888777145e7526a7078 (patch) | |
| tree | c09e27bb0a118d540d543d8bc16f814bc439eebc /tccgen.c | |
| parent | 8bcb2ae1b262fd94fbc30ebf6f3b9bdd1ae6dc4a (diff) | |
| download | tinycc-4fbe3cda330e6ac307c37888777145e7526a7078.tar.gz tinycc-4fbe3cda330e6ac307c37888777145e7526a7078.tar.bz2 | |
use new weaken_symbol() to fix another real-world corner case
Diffstat (limited to 'tccgen.c')
| -rw-r--r-- | tccgen.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5600,7 +5600,7 @@ ST_FUNC void decl(int l) sym = external_sym(v, &type, r, asm_label); if (type.t & VT_WEAK) - sym->type.t |= VT_WEAK; + weaken_symbol(sym); if (ad.alias_target) { Section tsec; |
