diff options
| author | jiang <30155751@qq.com> | 2014-05-20 14:59:37 +0800 |
|---|---|---|
| committer | jiang <30155751@qq.com> | 2014-05-20 14:59:37 +0800 |
| commit | f8b4f59f8bef4520fcf85d45f2a87b79e9b1b506 (patch) | |
| tree | 409c84154bcf6dd7e44020788fa13246986e6fd3 /tccgen.c | |
| parent | e5e7f488e22190f893152c0b2f73e9ba499c4169 (diff) | |
| download | tinycc-f8b4f59f8bef4520fcf85d45f2a87b79e9b1b506.tar.gz tinycc-f8b4f59f8bef4520fcf85d45f2a87b79e9b1b506.tar.bz2 | |
In the local use of local stack, use a global stack in the global time
Diffstat (limited to 'tccgen.c')
| -rw-r--r-- | tccgen.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3990,7 +3990,7 @@ ST_FUNC void unary(void) #endif ) tcc_warning("implicit declaration of function '%s'", name); - s = external_global_sym(t, &func_old_type, 0); + s = external_sym(t, &func_old_type, 0, NULL); } if ((s->type.t & (VT_STATIC | VT_INLINE | VT_BTYPE)) == (VT_STATIC | VT_INLINE | VT_FUNC)) { |
