Do not warn about an ununsed function, if it is marked with __attribute__((used)).
[cparser] / parsetest / hugeval.c
1 int printf(const char *str, ...);
2
3 int main(void) {
4         printf("%f\n", __builtin_huge_val());
5         return 0;
6 }