X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/040984073a54b4c603172be3c3f44b908ea5deb9..ec4d88f4965d67eda9bff4a7772cb25a33c3fdf5:/src/tables.c diff --git a/src/tables.c b/src/tables.c index 4e99f4ad..02d10f15 100644 --- a/src/tables.c +++ b/src/tables.c @@ -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;