MISRA C:2012 Rule 17.10
A function declared with a _Noreturn
function specifier shall have void
return type
Since R2024a
Description
Rule Definition
A function declared with a _Noreturn
function specifier shall have void
return type1
.
This rule comes from MISRA C™: 2012 Amendment 3.
Rationale
A function declared with a _Noreturn
specifier is not supposed to return to its caller and therefore must have a void
return type.
Polyspace Implementation
The rule checker reports a violation of this rule if a function declared with a _Noreturn
specifier has a return type other than void
.
This checker reports a rule violation only if you specify the C language standard as C11 or later for the Bug Finder analysis. For more information, see C standard version (-c-version)
.
Troubleshooting
If you expect a rule violation but do not see it, refer to Diagnose Why Coding Standard Violations Do Not Appear as Expected.
Examples
Check Information
Group: Functions |
Category: Required |
AGC Category: Required |
Version History
Introduced in R2024a
1 All MISRA coding rules and directives are © Copyright The MISRA Consortium Limited 2021.
The MISRA coding standards referenced in the Polyspace® Bug Finder™ documentation are from the following MISRA standards:
MISRA C:2004
MISRA C:2012
MISRA C:2023
MISRA C++:2008
MISRA C++:2023
MISRA and MISRA C are registered trademarks of The MISRA Consortium Limited 2021.