Do not warn about an ununsed function, if it is marked with __attribute__((used)).
[cparser] / parsetest / constarraytd.c
1 typedef float vec3_t[3];
2
3 void f(const vec3_t foo) {
4 }
5
6 int main(void) {
7         const float *bla = 0;
8         f(bla);
9         return 0;
10 }