[libc][NFC] Remove extra ; in exhaustive_test.h. (#124216)
[llvm-project.git] / lldb / test / API / lang / c / calling-conventions / vectorcall.c
blob5e0e1e599b6aaad7309888ceb94953efbba0e260
1 int __attribute__((vectorcall)) func(double a) {
2 return (int)a;
5 int main() {
6 return func(1.0); // break here