...
In this example, a volatile object is accessed through a non-volatile-qualified reference, resulting in undefined behavior.
Code Block | ||||
---|---|---|---|---|
| ||||
static volatile int **ipp; static int *ip; static volatile int i = 0; printf("i = %d.\n", i); ipp = &ip; /* produces warnings in modern compilers */ ipp = (int**) &ip; /* constraint violation, also produces warnings */ *ipp = &i; /* valid */ if (*ip != 0) { /* valid */ /* ... */ } |
...
In this compliant solution, ip
is declared volatile.
Code Block | ||||
---|---|---|---|---|
| ||||
static volatile int **ipp; static volatile int *ip; static volatile int i = 0; printf("i = %d.\n", i); ipp = &ip; *ipp = &i; if (*ip != 0) { /* ... */ } |
...