Support calling function pointers
Currently the code
typedef void (*fork_fun)(void *);
void fork(fork_fun fn, void *arg) {
fn(arg);
}
produces
Not implemented: expr complicated call
Currently the code
typedef void (*fork_fun)(void *);
void fork(fork_fun fn, void *arg) {
fn(arg);
}
produces
Not implemented: expr complicated call
closed with commit 698af927