added testprogs from ack compiler
[libfirm] / ir / be / test / multidim-array.c
1 #include <stdio.h>
2 #include <stdlib.h>
3
4 typedef int arraya[8][8];
5
6 int main()
7 {
8  int i = 0,j = 0;
9  arraya *p;
10  p = (arraya*)calloc(1,sizeof(arraya));
11  (*p)[i][j] = 1;
12
13  return 0;
14 }