minix/external/bsd/llvm/dist/clang/test/CodeGenCXX/PR5863-unreachable-block.cpp
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

13 lines
412 B
C++

// RUN: %clang_cc1 -fcxx-exceptions -fexceptions -emit-llvm-only %s
// PR5863
class E { };
void P1() {
try {
int a=0, b=0;
if (a > b) // simply filling in 0 or 1 doesn't trigger the assertion
throw E(); // commenting out 'if' or 'throw' 'fixes' the assertion failure
try { } catch (...) { } // empty try/catch block needed for failure
} catch (...) { } // this try/catch block needed for failure
}