mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00
qapi: Fix C code generation for 'if'
When commit5d83b9a130
"qapi: replace if condition list with dict {'all': [...]}" made cgen_ifcond() and docgen_ifcond() recursive, it messed up parenthesises in the former, and got them right in the latter, as the previous commit demonstrates. To fix, adopt the latter's working code for the former. This generates the correct code from the previous commit's commit message. Fixes:5d83b9a130
Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20210831123809.1107782-6-armbru@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
parent
dd044023e6
commit
82ca72c023
2 changed files with 2 additions and 3 deletions
|
@ -209,9 +209,9 @@ def cgen_ifcond(ifcond: Optional[Union[str, Dict[str, Any]]]) -> str:
|
|||
oper, operands = next(iter(ifcond.items()))
|
||||
if oper == 'not':
|
||||
return '!' + cgen_ifcond(operands)
|
||||
oper = {'all': '&&', 'any': '||'}[oper]
|
||||
oper = {'all': ' && ', 'any': ' || '}[oper]
|
||||
operands = [cgen_ifcond(o) for o in operands]
|
||||
return '(' + (') ' + oper + ' (').join(operands) + ')'
|
||||
return '(' + oper.join(operands) + ')'
|
||||
|
||||
|
||||
def docgen_ifcond(ifcond: Optional[Union[str, Dict[str, Any]]]) -> str:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue