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