preproc.c: prevent the compiler from reducing enum pp_token_type
commit5b76fa26c936ae3c566ce7cb7122722b88f50d3c
authorH. Peter Anvin <hpa@zytor.com>
Mon, 26 May 2008 18:14:38 +0000 (26 11:14 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Mon, 26 May 2008 18:14:38 +0000 (26 11:14 -0700)
treefef2a4a1d19da406843b0bec8cce672bf995d976
parentc4147f1fcc814af7ccdc761c12cbfe7c01a61948
preproc.c: prevent the compiler from reducing enum pp_token_type

The compiler is free to store enum pp_token_type into any size integer
small enough to contain all the values up to 2^n-1 for the smallest n
which contains all the values.  Force it to size it to integer size,
since we use it to hold macro positional parameters.
preproc.c