Added 2 testcases for the IA32 backend
[libfirm] / ir / be / test / multidim-array.c
index 7654cc5..fbfe717 100644 (file)
@@ -3,10 +3,12 @@
 
 typedef int arraya[8][8];
 
-main()
+int main()
 {
  int i = 0,j = 0;
  arraya *p;
  p = (arraya*)calloc(1,sizeof(arraya));
  (*p)[i][j] = 1;
+
+ return 0;
 }