30 lines
667 B
C
30 lines
667 B
C
// To test:
|
|
// ~/cppcheck/cppcheck--dump -DDUMMY --suppress=uninitvar misra/misra-test-avr8.c --std=c89 --platform=avr8 && python3 ../misra.py -verify misra/misra-test-avr8.c.dump
|
|
|
|
static void misra_10_4(void)
|
|
{
|
|
// #10480
|
|
const char buf1[1] = {a};
|
|
const char c = '0';
|
|
x = buf1[0] - c;
|
|
|
|
const char buf2[2] = {x,y};
|
|
x = 'a' == buf2[0]; // no-warning
|
|
|
|
typedef struct {
|
|
int t;
|
|
char buf[2];
|
|
} foo_t;
|
|
const foo_t cmd = {0};
|
|
x = 'b' == cmd.buf[0]; // no-warning
|
|
|
|
const foo_t * pcmd = &cmd;
|
|
x='c' == pcmd->buf[0]; // no-warning
|
|
(void)cmd.t;
|
|
}
|
|
|
|
static void misra_12_2(void) {
|
|
a = (((uint64_t)0xFF) << 32);
|
|
}
|
|
|