initial checkin of a function with really large basic blocks
[libfirm] / ir / be / test / use_uninit_ptr.c
index dc26272..07c9796 100644 (file)
@@ -1,10 +1,12 @@
-void foo(char *a1) {
+#include <stdio.h>
+
+void foo(void) {
+  char *f1;
+
+  printf("%d\n", *f1);
   return;
 }
 
 int main(void) {
-  char *f1;
-
-  foo(f1);
   return 0;
 }