Sign in
llvm
/
llvm-project
/
890c4bece26e005cd9fa5511fe0efa7307794de5
/
.
/
lldb
/
test
/
API
/
lang
/
c
/
calling-conventions
/
sysv_abi.c
blob: 309b2624d0b6e45e755331b652c12981b3c9ee3b [
file
]
int
__attribute__
((
sysv_abi
))
func
(
int
a
,
int
b
,
int
c
,
int
d
)
{
return
a
+
b
+
c
+
d
;
}
int
main
()
{
return
func
(
1
,
2
,
3
,
4
);
// break here
}