improve and fix some test apps
[libfirm] / ir / be / test / use_uninit_ptr.c
1 #include <stdio.h>
2
3 void foo(void) {
4   char *f1;
5
6   printf("%d\n", *f1);
7   return;
8 }
9
10 int main(void) {
11   return 0;
12 }