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] print/parse resource handle key quoted and escaped (#119746)
[llvm-project.git]
/
lldb
/
test
/
API
/
commands
/
expression
/
dont_allow_jit
/
main.c
blob
ebd8ae11a73a9e2a85e785f3a5a05ea19d0c839a
1
#include <stdio.h>
2
3
int
4
call_me
(
int
input
)
5
{
6
return
printf
(
"I was called: %d.
\n
"
,
input
);
7
}
8
9
int
10
main
()
11
{
12
int
test_var
=
10
;
13
printf
(
"Set a breakpoint here: %d.
\n
"
,
test_var
);
14
return
call_me
(
100
);
15
}