repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove a dead bool.
[llvm/avr.git]
/
test
/
FrontendC++
/
2003-08-24-Cleanup.cpp
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
}