xref: /llvm-project/lldb/test/API/lang/c/calling-conventions/vectorcall.c (revision 3256aa8fe6fd785df12cc39f95e55bef0bc371c2)

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