circify / compiler

Superseded by https://github.com/circify/circ
https://github.com/circify/circ
5 stars 2 forks source link

Support 2-D (n-D?) C arrays #5

Open elefthei opened 4 years ago

elefthei commented 4 years ago

Example c test:

int bar() {
  int foo[2][2] = {{1, 2}, {3, 4}};
  return foo[1][1];
}