repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[mlir][acc] Introduce MappableType interface (#122146)
[llvm-project.git]
/
lldb
/
test
/
API
/
lang
/
c
/
calling-conventions
/
pascal.c
blob
ed0e3b3735facd40f4fa45934fc7ecd066ca8c6b
1
int
__attribute__
((
pascal
))
func
(
int
a
,
int
b
,
int
c
,
int
d
) {
2
return
a
+
b
+
c
+
d
;
3
}
4
5
int
main
() {
6
return
func
(
1
,
2
,
3
,
4
);
// break here
7
}