diff options
author | 2004-06-07 00:14:33 -0700 | |
---|---|---|
committer | 2005-04-07 21:02:04 -0700 | |
commit | 5a7c76825c8bb231b68897cb52a596561b39aec8 (patch) | |
tree | d858b99deaa8fa2a972fad8f45289ac917e5f88c /token.h | |
parent | Oops. Al forgot to handle the new TOKEN_UNTAINT in token (diff) | |
download | sparse-5a7c76825c8bb231b68897cb52a596561b39aec8.tar.gz sparse-5a7c76825c8bb231b68897cb52a596561b39aec8.tar.bz2 sparse-5a7c76825c8bb231b68897cb52a596561b39aec8.zip |
Shrink "struct token" by moving "noexpand" into the position flags.
This makes it take one bit (which we can just steal from the line
number), instead of four bytes.
Diffstat (limited to 'token.h')
-rw-r--r-- | token.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -122,7 +122,6 @@ struct string { struct token { struct position pos; struct token *next; - int noexpand; union { char *number; struct ident *ident; |