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