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
[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git]
/
lldb
/
test
/
Shell
/
Unwind
/
Inputs
/
windows-unaligned-x86_64.cpp
blob
d310ef7d7ed2fe8daca01b7f41366b57cd8a1c7e
1
extern
"C"
void
call_func
(
void
(*
ptr
)(
int
a
),
int
a
);
2
3
extern
"C"
void
func
(
int
arg
) { }
4
5
int
main
(
int
argc
,
char
**
argv
) {
6
call_func
(
func
,
42
);
7
return
0
;
8
}