diff options
Diffstat (limited to 'libcpp/include/cpplib.h')
-rw-r--r-- | libcpp/include/cpplib.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libcpp/include/cpplib.h b/libcpp/include/cpplib.h index 298b434..10f0725 100644 --- a/libcpp/include/cpplib.h +++ b/libcpp/include/cpplib.h @@ -255,8 +255,10 @@ struct GTY(()) cpp_identifier { spelling; }; -/* A preprocessing token. This has been carefully packed and should - occupy 16 bytes on 32-bit hosts and 24 bytes on 64-bit hosts. */ +/* A preprocessing token. This occupies 32 bytes on a 64-bit host. On a + 32-bit host it occupies 20 or 24 bytes, depending whether a uint64_t + requires 4- or 8-byte alignment. */ + struct GTY(()) cpp_token { /* Location of first char of token, together with range of full token. */ |