fixed comment: get_call_abi() get the call type, NOT the method type of the called...
[libfirm] / ir / be / test / func_arg.c
1 #include <stdio.h>
2
3 void mymain(int argc, const char * const*argv) {
4         printf("A0: %s AC: %d\n", argv[0], argc);
5 }
6
7 int main(argc, argv)
8   int argc;
9   char **argv;
10 {
11         const char *args[] = { "blup", "bla" };
12
13         mymain(2, args);
14         return 0;
15 }