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
Revert "[GVN] MemorySSA for GVN: add optional `AllowMemorySSA`"
[llvm-project.git]
/
lldb
/
test
/
API
/
symbol_ondemand
/
breakpoint_source_regex
/
main.cpp
blob
1c300cc8fbb411bdbf34ebdfe4cda9e846852c4c
1
#include <stdio.h>
2
3
void
foo
() {
4
printf
(
"hello world from foo"
);
// Set break point at this line.
5
}
6
7
int
main
() {
8
foo
();
9
return
0
;
10
}