updated ignore pattern again ([^ch] doesn't work)
[libfirm] / ir / be / test / use_uninit_ptr.c
1 void foo(char *a1) {
2   return;
3 }
4
5 int main(void) {
6   char *f1;
7
8   foo(f1);
9   return 0;
10 }