diff options
| author | Larry Doolittle <ldoolitt@recycle.lbl.gov> | 2017-05-08 08:30:43 -0700 |
|---|---|---|
| committer | Larry Doolittle <ldoolitt@recycle.lbl.gov> | 2017-05-08 08:30:43 -0700 |
| commit | 7443db0d5f841b81a55e918bf8c228dd20f9ddb2 (patch) | |
| tree | e5ef3f96d1b421cfd053eb04e83984e3074c017d /tccpp.c | |
| parent | 56df27502c17d29984474918cb3b8850671d8f39 (diff) | |
| download | tinycc-7443db0d5f841b81a55e918bf8c228dd20f9ddb2.tar.gz tinycc-7443db0d5f841b81a55e918bf8c228dd20f9ddb2.tar.bz2 | |
Remove some unused-parameter lint
Mark TCCState parameter as unused in tcc_undefine_symbol(), tcc_add_symbol(),
tcc_print_stats(), asm_get_local_label_name(), use_section1(), tccpp_delete(),
tcc_tool_ar(), tcc_tool_impdef(), and tcc_tool_cross().
Also mark it unused in tcc_add_bcheck() unless CONFIG_TCC_BCHECK.
Remove it entirely in ld_next().
Diffstat (limited to 'tccpp.c')
| -rw-r--r-- | tccpp.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3557,6 +3557,7 @@ ST_FUNC void tccpp_delete(TCCState *s) { int i, n; + (void) s; /* not used */ /* free -D and compiler defines */ free_defines(NULL); |
