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
/
cpp
/
rvalue-references
/
main.cpp
blob
6da34c73f1013352b523ef6dd9f18d6cb2f16b75
1
#include <stdio.h>
2
3
void
foo
(
int
&&
i
)
4
{
5
printf
(
"%d
\n
"
,
i
);
// breakpoint 1
6
}
7
8
int
main
()
9
{
10
foo
(
3
);
11
return
0
;
// breakpoint 2
12
}