1int __attribute__((stdcall)) func(int a, int b, int c, int d) {2 return a + b + c + d;3}4 5int main() {6 return func(1, 2, 3, 4); // break here7}8