summaryrefslogtreecommitdiff
path: root/ast.h
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2010-05-10 10:47:14 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-05-10 11:04:02 -0700
commit3521f0bdd52d226031a3b60e2cd89b4629147690 (patch)
tree2215d03df7219358862025081aa018f0295184dd /ast.h
parentbdd9b1f3ffa2a195d983816adfeca20480256119 (diff)
Store AST function call parameters in expressions
Previously the list of function call parameters was stored as a circular list in ast_expression::subexpressions[1]. They are now stored as a regular list in ast_expression::expressions.
Diffstat (limited to 'ast.h')
-rw-r--r--ast.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ast.h b/ast.h
index 41787f5c1c..9fa651878e 100644
--- a/ast.h
+++ b/ast.h
@@ -178,7 +178,8 @@ public:
/**
- * List of expressions for an \c ast_sequence.
+ * List of expressions for an \c ast_sequence or parameters for an
+ * \c ast_function_call
*/
struct simple_node expressions;
};