summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/PR5863-unreachable-block.cpp
blob: 4829b5277aadd759bcb479f94e3b2b88696a5a2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -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
}
OpenPOWER on IntegriCloud