llvm-project/clang/test/CodeGenCXX/PR5863-unreachable-block.cpp
Benjamin Kramer dc99965343 Add a comment for r104472.
llvm-svn: 104473
2010-05-23 20:57:46 +00:00

14 lines
382 B
C++

// RUN: %clang_cc1 -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
}