blob: 6b40cbc5d3facc5892262aba9b1097f5c79282c9 [file]
int __attribute__((ms_abi)) func(int a, int b, int c, int d) {
return a + b + c + d;
}
int main() {
return func(1, 2, 3, 4); // break here
}