mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-20 17:53:02 +00:00
gnulib: update
Contains the creation of the xhash module. https://lists.gnu.org/archive/html/bug-gnulib/2019-09/msg00046.html * src/muscle-tab.c, src/state.c, src/symtab.c, src/uniqstr.c: Use hash_xinitialize.
This commit is contained in:
@@ -25,7 +25,7 @@ gnulib_modules='
|
|||||||
error extensions fdl fopen-safer
|
error extensions fdl fopen-safer
|
||||||
getopt-gnu
|
getopt-gnu
|
||||||
gettext-h git-version-gen gitlog-to-changelog
|
gettext-h git-version-gen gitlog-to-changelog
|
||||||
gpl-3.0 hash inttypes isnan javacomp-script
|
gpl-3.0 inttypes isnan javacomp-script
|
||||||
javaexec-script
|
javaexec-script
|
||||||
ldexpl
|
ldexpl
|
||||||
libtextstyle-optional
|
libtextstyle-optional
|
||||||
@@ -48,6 +48,7 @@ gnulib_modules='
|
|||||||
xalloc
|
xalloc
|
||||||
xalloc-die
|
xalloc-die
|
||||||
xconcat-filename
|
xconcat-filename
|
||||||
|
xhash
|
||||||
xlist
|
xlist
|
||||||
xmemdup0
|
xmemdup0
|
||||||
xstrndup
|
xstrndup
|
||||||
|
|||||||
2
gnulib
2
gnulib
Submodule gnulib updated: 03add7eb9d...672663aca3
1
lib/.gitignore
vendored
1
lib/.gitignore
vendored
@@ -321,3 +321,4 @@
|
|||||||
/assure.h
|
/assure.h
|
||||||
/fsync.c
|
/fsync.c
|
||||||
/textstyle.in.h
|
/textstyle.in.h
|
||||||
|
/xhash.c
|
||||||
|
|||||||
@@ -126,10 +126,8 @@ muscle_init (void)
|
|||||||
/* Initialize the muscle obstack. */
|
/* Initialize the muscle obstack. */
|
||||||
obstack_init (&muscle_obstack);
|
obstack_init (&muscle_obstack);
|
||||||
|
|
||||||
muscle_table = hash_initialize (HT_INITIAL_CAPACITY, NULL, hash_muscle,
|
muscle_table = hash_xinitialize (HT_INITIAL_CAPACITY, NULL, hash_muscle,
|
||||||
hash_compare_muscles, muscle_entry_free);
|
hash_compare_muscles, muscle_entry_free);
|
||||||
if (!muscle_table)
|
|
||||||
xalloc_die ();
|
|
||||||
|
|
||||||
/* Version and input file. */
|
/* Version and input file. */
|
||||||
MUSCLE_INSERT_STRING ("version", VERSION);
|
MUSCLE_INSERT_STRING ("version", VERSION);
|
||||||
|
|||||||
12
src/state.c
12
src/state.c
@@ -359,13 +359,11 @@ state_hasher (void const *s, size_t tablesize)
|
|||||||
void
|
void
|
||||||
state_hash_new (void)
|
state_hash_new (void)
|
||||||
{
|
{
|
||||||
state_table = hash_initialize (HT_INITIAL_CAPACITY,
|
state_table = hash_xinitialize (HT_INITIAL_CAPACITY,
|
||||||
NULL,
|
NULL,
|
||||||
state_hasher,
|
state_hasher,
|
||||||
state_comparator,
|
state_comparator,
|
||||||
NULL);
|
NULL);
|
||||||
if (!state_table)
|
|
||||||
xalloc_die ();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
24
src/symtab.c
24
src/symtab.c
@@ -779,20 +779,16 @@ hash_semantic_type_hasher (void const *m, size_t tablesize)
|
|||||||
void
|
void
|
||||||
symbols_new (void)
|
symbols_new (void)
|
||||||
{
|
{
|
||||||
symbol_table = hash_initialize (HT_INITIAL_CAPACITY,
|
symbol_table = hash_xinitialize (HT_INITIAL_CAPACITY,
|
||||||
NULL,
|
NULL,
|
||||||
hash_symbol_hasher,
|
hash_symbol_hasher,
|
||||||
hash_symbol_comparator,
|
hash_symbol_comparator,
|
||||||
symbol_free);
|
symbol_free);
|
||||||
if (!symbol_table)
|
semantic_type_table = hash_xinitialize (HT_INITIAL_CAPACITY,
|
||||||
xalloc_die ();
|
NULL,
|
||||||
semantic_type_table = hash_initialize (HT_INITIAL_CAPACITY,
|
hash_semantic_type_hasher,
|
||||||
NULL,
|
hash_semantic_type_comparator,
|
||||||
hash_semantic_type_hasher,
|
free);
|
||||||
hash_semantic_type_comparator,
|
|
||||||
free);
|
|
||||||
if (!semantic_type_table)
|
|
||||||
xalloc_die ();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -157,13 +157,11 @@ hash_uniqstr (void const *m, size_t tablesize)
|
|||||||
void
|
void
|
||||||
uniqstrs_new (void)
|
uniqstrs_new (void)
|
||||||
{
|
{
|
||||||
uniqstrs_table = hash_initialize (HT_INITIAL_CAPACITY,
|
uniqstrs_table = hash_xinitialize (HT_INITIAL_CAPACITY,
|
||||||
NULL,
|
NULL,
|
||||||
hash_uniqstr,
|
hash_uniqstr,
|
||||||
hash_compare_uniqstr,
|
hash_compare_uniqstr,
|
||||||
free);
|
free);
|
||||||
if (!uniqstrs_table)
|
|
||||||
xalloc_die ();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user