Burst Inference Failure 5

Explanation

The current bursting algorithm will reject parameters that are declared with the volatile type qualifier or with an atomic type. Consider rewriting the code to remove these qualifiers.

Example

//////////// ORIGINAL ////////////
void foo(volatile int *a, volatile int *b) {
  for (long i = 0; i < 256; ++i)
    b[i] = a[i];
}
 
//////////// UPDATED ////////////
void foo(int *a, int *b) {
  for (long i = 0; i < 256; ++i)
    b[i] = a[i];
}