diff options
Diffstat (limited to 'gcc/lto-symtab.c')
| -rw-r--r-- | gcc/lto-symtab.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/lto-symtab.c b/gcc/lto-symtab.c index 732940e7f9c..f8349cf763f 100644 --- a/gcc/lto-symtab.c +++ b/gcc/lto-symtab.c @@ -65,6 +65,15 @@ static GTY ((if_marked ("lto_symtab_entry_marked_p"), param_is (struct lto_symtab_entry_def))) htab_t lto_symtab_identifiers; +/* Free symtab hashtable. */ + +void +lto_symtab_free (void) +{ + htab_delete (lto_symtab_identifiers); + lto_symtab_identifiers = NULL; +} + /* Return the hash value of an lto_symtab_entry_t object pointed to by P. */ static hashval_t |

