Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
b795561c3702ebcd7af6529a3a38e2bd5c6d56f5
/
.
/
llvm
/
test
/
Regression
/
C++Frontend
/
2003-08-24-Cleanup.cpp.tr
blob: 690303545f5ed4b0b2378684cf8ddb9b23d36c39 [
file
] [
log
] [
blame
]
// RUN: llvmg++ -xc++ 2003-08-24-Cleanup.cpp.tr -c -o - | dis | grep 'call void %llvm.unwind'
struct
S
{
~
S
();
};
int
mightthrow
();
int
test
()
{
S s
;
mightthrow
();
}