1int __attribute__((vectorcall)) func(double a) {
2 return (int)a;
3}
4
5int main() {
6 return func(a: 1.0); // break here
7}
8

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