Do not warn about an ununsed function, if it is marked with __attribute__((used)).
[cparser] / parsetest / if.c
1 int test1(int a) {
2         if (a);
3         return a;
4 }
5
6 int main(void)
7 {
8         return 0;
9 }