* Fix misra 8.7 false positives on single function usage When there is a single usage of a function, we should first check if the file it is used in, is the same one it was defined in. When this is not the case, there is no violatior to be reported. * Fix misra rule 5.9 false positives for exception The exception for rule 5.9 described in the guidelines allows for multiple definitions of internal linkage obejcts when these regard a static inlined function defined in the same header file. * Fix neglecting of inline keyword flag upon simplifications When the inline keyword is being "simplified" and the inline flag is degated to the next token. However, this information might be lost if the next token itself is simplified/deleted in a futher pass. Therefore, we must propagated the flag to all the next named tokens, so we can make sure the function name token itself is tagged with this property. * add tests for misra addon rules 8.7 and 5.9
22 lines
406 B
C
22 lines
406 B
C
|
|
|
|
typedef int MISRA_2_3_A;
|
|
typedef int MISRA_2_3_B;
|
|
typedef int MISRA_2_3_VIOLATION; // cppcheck-suppress misra-c2012-2.3
|
|
|
|
// cppcheck-suppress misra-c2012-2.4
|
|
struct misra_2_4_violation_t {
|
|
int x;
|
|
};
|
|
|
|
static inline void misra_5_9_exception(void) {}
|
|
|
|
void misra_8_7_external(void);
|
|
|
|
#define MISRA_2_5_OK_1 1
|
|
#define MISRA_2_5_OK_2 2
|
|
// cppcheck-suppress misra-c2012-2.5
|
|
#define MISRA_2_5_VIOLATION 0
|
|
|
|
|