Skip to content

Commit

Permalink
Merge pull request #152 from hbr-det/develop
Browse files Browse the repository at this point in the history
Skip GCC's __va_list fields on AArch64
  • Loading branch information
iMichka authored Jul 31, 2023
2 parents 60b3790 + 7ac8009 commit 2641e57
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pygccxml/parser/scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,15 @@ def __init__(self, xml_file, decl_factory, config, *args):
"length",
]

# These fields are generated by GCC on AArch64, and have no location.
self.__name_attrs_to_skip += [
"__stack",
"__gr_top",
"__vr_top",
"__gr_offs",
"__vr_offs",
]

self.__xml_generator_from_xml_file = None

@property
Expand Down

0 comments on commit 2641e57

Please sign in to comment.