diff options
author | Christopher Li <sparse@chrisli.org> | 2007-01-16 18:45:45 -0800 |
---|---|---|
committer | Josh Triplett <josh@freedesktop.org> | 2007-01-27 01:29:30 -0800 |
commit | a12d4528ffc4e66b14519d739806f0eb793f72cf (patch) | |
tree | 12dff066c294fb8213e6b221fedc1a4ae2506055 /symbol.h | |
parent | Another attempt to fix the attribute parsing. (diff) | |
download | sparse-a12d4528ffc4e66b14519d739806f0eb793f72cf.tar.gz sparse-a12d4528ffc4e66b14519d739806f0eb793f72cf.tar.bz2 sparse-a12d4528ffc4e66b14519d739806f0eb793f72cf.zip |
Marking anonymous string.
The back end need to generate some storage for anonymous string.
This simplify testing of anonymous string.
Signed-off-by: Christopher Li <sparse@chrisli.org>
Diffstat (limited to 'symbol.h')
-rw-r--r-- | symbol.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -118,7 +118,8 @@ struct symbol { initialized:1, examined:1, expanding:1, - evaluated:1; + evaluated:1, + string:1; struct expression *array_size; struct ctype ctype; struct symbol_list *arguments; |