aboutsummaryrefslogtreecommitdiff
path: root/tcc.h
diff options
context:
space:
mode:
authorThomas Preud'homme <robotux@celest.fr>2016-11-12 23:16:09 +0800
committerThomas Preud'homme <robotux@celest.fr>2016-12-03 17:26:51 +0000
commit097cf3aa5ee370bab50d6d15cef9b0af55a1a3a2 (patch)
tree3bf02360980492571e777b334dc1e9a8bdd61969 /tcc.h
parentc4bec037be0da6bfd19484c34cc19e358cbb6822 (diff)
downloadtinycc-097cf3aa5ee370bab50d6d15cef9b0af55a1a3a2.tar.gz
tinycc-097cf3aa5ee370bab50d6d15cef9b0af55a1a3a2.tar.bz2
Control symbol table of which to relocate symbols
Pass pointer to symbol table to relocate the symbols of in relocate_syms
Diffstat (limited to 'tcc.h')
-rw-r--r--tcc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcc.h b/tcc.h
index 3010bb9..fbabd7a 100644
--- a/tcc.h
+++ b/tcc.h
@@ -1375,7 +1375,7 @@ ST_FUNC void put_stabn(int type, int other, int desc, int value);
ST_FUNC void put_stabd(int type, int other, int desc);
ST_FUNC void relocate_common_syms(void);
-ST_FUNC void relocate_syms(TCCState *s1, int do_resolve);
+ST_FUNC void relocate_syms(TCCState *s1, Section *symtab, int do_resolve);
ST_FUNC void relocate_section(TCCState *s1, Section *s);
ST_FUNC void relocate_plt(TCCState *s1);