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

source code of lldb/test/API/lang/c/calling-conventions/ms_abi.c