22-08-2014, 11:37 AM
It is unclear whether this question has been superceded by the post at http://www.misra.org.uk/forum/viewtopic.php?t=1398 in the MISRA C:2004 part of bulletin board
8.11 is a section on pointer conversions. For example:
8.11 is a section on pointer conversions. For example:
Code:
UINT_32 *ptr_u32 = ....
SINT_32 *ptr_s32 = ....
ptr_u32 = (UINT_32 *) ptr_s32; // violates rule 11.3
Posted by and on behalf of the MISRA C Working Group