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]
/
clang
/
test
/
Import
/
expr-with-cleanups
/
Inputs
/
S.cpp
blob
7b69f48f681e34a69649a69dd385d66bed4187e5
1
struct
RAII
{
2
int
i
=
0
;
3
RAII
() {
i
++; }
4
~
RAII
() {
i
--; }
5
};
6
void
f
() {
7
RAII
();
8
}