Sign in
llvm
/
llvm-project.git
/
refs/heads/main
/
.
/
lldb
/
test
/
API
/
lang
/
c
/
calling-conventions
/
vectorcall.c
blob: 5e0e1e599b6aaad7309888ceb94953efbba0e260 [
file
] [
log
] [
blame
] [
edit
]
int
__attribute__
((
vectorcall
))
func
(
double
a
)
{
return
(
int
)
a
;
}
int
main
()
{
return
func
(
1.0
);
// break here
}