summaryrefslogtreecommitdiff
path: root/pycparser/_c_ast.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'pycparser/_c_ast.cfg')
-rw-r--r--pycparser/_c_ast.cfg8
1 files changed, 5 insertions, 3 deletions
diff --git a/pycparser/_c_ast.cfg b/pycparser/_c_ast.cfg
index e9b5685..0626533 100644
--- a/pycparser/_c_ast.cfg
+++ b/pycparser/_c_ast.cfg
@@ -25,6 +25,8 @@ ArrayRef: [name*, subscript*]
#
Assignment: [op, lvalue*, rvalue*]
+Alignas: [alignment*]
+
BinaryOp: [op, left*, right*]
Break: []
@@ -59,7 +61,7 @@ Continue: []
# init: initialization value, or None
# bitsize: bit field size, or None
#
-Decl: [name, quals, storage, funcspec, type*, init*, bitsize*]
+Decl: [name, quals, align, storage, funcspec, type*, init*, bitsize*]
DeclList: [decls**]
@@ -172,14 +174,14 @@ TernaryOp: [cond*, iftrue*, iffalse*]
# A base type declaration
#
-TypeDecl: [declname, quals, type*]
+TypeDecl: [declname, quals, align, type*]
# A typedef declaration.
# Very similar to Decl, but without some attributes
#
Typedef: [name, quals, storage, type*]
-Typename: [name, quals, type*]
+Typename: [name, quals, align, type*]
UnaryOp: [op, expr*]