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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
lldb
/
test
/
API
/
lang
/
c
/
shared_lib
/
main.c
blob
b4377de18c165bbb06ae1fbef1d1fe3e8c6da152
1
#include <stdio.h>
2
#include
"foo.h"
3
4
int
5
main
()
6
{
7
struct
foo
*
my_foo_ptr
;
8
my_foo_ptr
=
GetMeAFoo
();
9
10
printf
(
"My sub foo has: %d.
\n
"
,
GetMeASubFoo
(
my_foo_ptr
)->
sub_1
);
// Set breakpoint 0 here.
11
12
return
0
;
13
}