Test case for historical reasons
[libfirm] / ir / be / test / fastcall.c
1 /*$ -fno-inline $*/
2
3 int __attribute__((fastcall)) test(int a, int b, int c) {
4         return a+b - c;
5 }
6
7 int main() {
8         return test(4, -4, 0);
9 }