mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-14 14:53:03 +00:00
* bootstrap (gnulib_modules): Add verify.
* lib/.cvsignore: Add verify.h. * src/getargs.c: Use ARGMATCH_VERIFY rather than verify. * src/system.h (verify): Remove. Include verify.h instead. * src/tables.c (tables_generate): Use new API for 'verify'.
This commit is contained in:
@@ -810,9 +810,8 @@ tables_generate (void)
|
||||
/* This is a poor way to make sure the sizes are properly
|
||||
correlated. In particular the signedness is not taken into
|
||||
account. But it's not useless. */
|
||||
verify (sizes_are_properly_correlated,
|
||||
(sizeof nstates <= sizeof nvectors
|
||||
&& sizeof nvars <= sizeof nvectors));
|
||||
verify (sizeof nstates <= sizeof nvectors
|
||||
&& sizeof nvars <= sizeof nvectors);
|
||||
|
||||
nvectors = state_number_as_int (nstates) + nvars;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user