]> git.wh0rd.org - ICEs.git/blame - 228889/test.i.ok
add bfin ice
[ICEs.git] / 228889 / test.i.ok
CommitLineData
45516216 1typedef struct {
2 int *elements;
3 int count;
4 }
5 data;
6 int func_one(data foo, data bar, data buz) {
7 return func_three(foo, bar, buz);
8 }
9 int func_two(data john, data doe, data biz) {
10 some_external_function(john, doe, biz);
11 return doe.count;
12 }
13 int func_three(data jane, data hello, data world) {
14 return func_two(jane, hello, world);
15 }