repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add and use DominatorTreeBase::findNearestCommonDominator().
[llvm-complete.git]
/
test
/
C++Frontend
/
2003-08-24-Cleanup.cpp.tr
blob
ab0d1a0d11cd79c893ff8deba4089a84e50293df
1
// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep unwind
2
3
struct S { ~S(); };
4
5
int mightthrow();
6
7
int test() {
8
S s;
9
mightthrow();
10
}