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
/
cxx-try-catch
/
Inputs
/
F.cpp
blob
4e06f3599bb4310a3c6c8f3c329bd2b9fca90c8e
1
void
f
() {
2
try
{
3
}
catch
(...) {
4
}
5
6
try
{
7
}
catch
(
int
) {
8
}
9
10
try
{
11
}
catch
(
int
varname
) {
12
}
13
14
try
{
15
}
catch
(
int
varname1
) {
16
}
catch
(
long
varname2
) {
17
}
18
}