1 /* Test TI ABI with supported constructs */
2
3 /* { dg-do assemble } */
4 /* { dg-options "-O1 -mabi=ti" } */
5
6
7 extern void extfunc1(long long);
8 extern long long extfunc2(long long);
9
10 long long test(void)
11 {
12 extfunc1(3);
13 return extfunc2(1);
14 }