| OLD | NEW |
| 1 /* Test passing of arguments to functions. Use various sorts of arguments, | 1 /* Test passing of arguments to functions. Use various sorts of arguments, |
| 2 including basic types, pointers to those types, structures, lots of | 2 including basic types, pointers to those types, structures, lots of |
| 3 args, etc, in various combinations. */ | 3 args, etc, in various combinations. */ |
| 4 | 4 |
| 5 /* AIX requires this to be the first thing in the file. */ | 5 /* AIX requires this to be the first thing in the file. */ |
| 6 #ifdef __GNUC__ | 6 #ifdef __GNUC__ |
| 7 # define alloca __builtin_alloca | 7 # define alloca __builtin_alloca |
| 8 # define HAVE_STACK_ALLOCA 1 | 8 # define HAVE_STACK_ALLOCA 1 |
| 9 #else /* not __GNUC__ */ | 9 #else /* not __GNUC__ */ |
| 10 # ifdef _AIX | 10 # ifdef _AIX |
| (...skipping 816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 827 | 827 |
| 828 /* Dummy functions which the testsuite can use to run to, etc. */ | 828 /* Dummy functions which the testsuite can use to run to, etc. */ |
| 829 | 829 |
| 830 void | 830 void |
| 831 marker_indirect_call () {} | 831 marker_indirect_call () {} |
| 832 | 832 |
| 833 void | 833 void |
| 834 marker_call_with_trampolines () {} | 834 marker_call_with_trampolines () {} |
| 835 | 835 |
| 836 | 836 |
error: old chunk mismatch |
None
| OLD | NEW |