aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/c/calling-conventions/vectorcall.c
blob: 5e0e1e599b6aaad7309888ceb94953efbba0e260 (plain)
1
2
3
4
5
6
7
int __attribute__((vectorcall)) func(double a) {
  return (int)a;
}

int main() {
  return func(1.0); // break here
}