Skip to content

Commit 593f825

Browse files
committed
ARM: fix return value check for call sites
1 parent c18fa56 commit 593f825

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

chb/app/CHVersion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
chbversion: str = "0.3.0-20250817"
1+
chbversion: str = "0.3.0-20250819"

chb/arm/ARMCallOpcode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ def ast_call_prov(
342342
rtype.is_void
343343
or ((defuses[0] is None)
344344
and (defuseshigh[0] is None)
345-
and not self.return_value)):
345+
and not self.return_value(xdata))):
346346
chklogger.logger.info(
347347
"Unused: introduced ssa-variable: %s for return value of %s "
348348
+ "at address %s",

0 commit comments

Comments
 (0)