Skip to content

Commit 2641e57

Browse files
authored
Merge pull request #152 from hbr-det/develop
Skip GCC's __va_list fields on AArch64
2 parents 60b3790 + 7ac8009 commit 2641e57

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

pygccxml/parser/scanner.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,15 @@ def __init__(self, xml_file, decl_factory, config, *args):
187187
"length",
188188
]
189189

190+
# These fields are generated by GCC on AArch64, and have no location.
191+
self.__name_attrs_to_skip += [
192+
"__stack",
193+
"__gr_top",
194+
"__vr_top",
195+
"__gr_offs",
196+
"__vr_offs",
197+
]
198+
190199
self.__xml_generator_from_xml_file = None
191200

192201
@property

0 commit comments

Comments
 (0)