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
[Clang/AMDGPU] Zero sized arrays not allowed in HIP device code. (#113470)
[llvm-project.git]
/
lldb
/
test
/
API
/
python_api
/
debugger
/
main.cpp
blob
4b4ca68ab87dc0db5e0a9b66c1aa38dd5b8f3aed
1
// This simple program is to test the lldb Python API SBDebugger.
2
3
int
func
(
int
val
) {
4
return
val
-
1
;
5
}
6
7
int
main
(
int
argc
,
char const
*
argv
[]) {
8
return
func
(
argc
);
9
}