- fixed comment: bs cannot be NULL anymore (and was never NULL previously)
[libfirm] / ir / be / test / fehler033.c
1 /* tailrec optimisation failing on struct parameters */
2
3 typedef struct {
4         int a, b, c;
5 } stru;
6
7 void f(int a, const stru x) {
8         if(a == 100)
9                 return;
10         f(a+1, x);
11 }
12
13 int main() {
14         return 0;
15 }