repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
When removing a function from the function set and adding it to deferred, we
[llvm.git]
/
test
/
FrontendC++
/
2003-08-24-Cleanup.cpp
blob
9f20ad6b714ac1dfbcf1dd06b3a55508e84cb695
1
// RUN: %llvmgxx -xc++ %s -S -o - | grep unwind
2
3
struct
S
{ ~
S
(); };
4
5
int
mightthrow
();
6
7
int
test
() {
8
S s
;
9
mightthrow
();
10
}