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
[AMDGPU] Add True16 register classes.
[llvm-project.git]
/
lldb
/
test
/
API
/
commands
/
expression
/
radar_9531204
/
main.c
blob
c02660b556419ab488c005f1b0b724bc8448a6ae
1
#include <stdio.h>
2
3
// breakpoint set -n foo
4
//
5
//
6
int
foo
(
int
value
)
7
{
8
printf
(
"I got the value: %d.
\n
"
,
value
);
9
return
0
;
10
}
11
12
int
main
(
int
argc
,
char
**
argv
)
13
{
14
foo
(
argc
);
15
printf
(
"Hello there: %d.
\n
"
,
argc
);
16
return
0
;
17
}