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