MacroCollector: default to not including intermediate macros
By default, exclude macros whose numerical value is not a valid member of the semantic type (e.g. PSA_ALG_xxx_BASE is not itself an algorithm, only an intermediate value used to construct others). But do include them with include_intermediate=True, which generate_psa_constants.py does. Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
f8deb759ba
commit
13d60eb4fc
2 changed files with 17 additions and 1 deletions
|
@ -213,6 +213,9 @@ class CaseBuilder(macro_collector.PSAMacroCollector):
|
|||
2. Call `write_file` to write ``psa_constant_names_generated.c``.
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
super().__init__(include_intermediate=True)
|
||||
|
||||
@staticmethod
|
||||
def _make_return_case(name):
|
||||
return 'case %(name)s: return "%(name)s";' % {'name': name}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue