X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/ac28f67c0b8b157eeeae7ea58a293861244453c0..e89a22bfab22e4d2ee73be49dcb66b51f8d0e892:/src/output.c diff --git a/src/output.c b/src/output.c index bfba828f..2daac6c3 100644 --- a/src/output.c +++ b/src/output.c @@ -131,7 +131,7 @@ output_short_or_char_table (struct obstack *oout, const char *table_name, short *short_table, short first_value, - short begin, short end) + int begin, int end) { int i, j; @@ -169,7 +169,7 @@ output_short_table (struct obstack *oout, const char *table_name, short *short_table, short first_value, - short begin, short end) + int begin, int end) { output_short_or_char_table (oout, comment, "short", table_name, short_table, first_value, begin, end); @@ -978,8 +978,8 @@ pack_vector (int vector) return j; } } - - assert (!"pack_vector"); +#define pack_vector_succeeded 0 + assert (pack_vector_succeeded); return 0; }