aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@penguin.transmeta.com>2003-05-19 13:13:45 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 21:00:42 -0700
commit920bc36ceb09117937d01131ca743efe44478c67 (patch)
tree83acf28b0d2f0ebb9848417f270915fef0b7e9ac /parse.h
parentClean up for/while/do parsing by separating them out (diff)
downloadsparse-920bc36ceb09117937d01131ca743efe44478c67.tar.gz
sparse-920bc36ceb09117937d01131ca743efe44478c67.tar.bz2
sparse-920bc36ceb09117937d01131ca743efe44478c67.zip
Parse C99 style 'for()' statements with variable declarations.
Diffstat (limited to 'parse.h')
-rw-r--r--parse.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/parse.h b/parse.h
index b5de862..42fa081 100644
--- a/parse.h
+++ b/parse.h
@@ -61,6 +61,7 @@ struct statement {
struct iterator_struct {
struct symbol *iterator_break;
struct symbol *iterator_continue;
+ struct symbol_list *iterator_syms;
struct statement *iterator_pre_statement;
struct expression *iterator_pre_condition;