1 // RUN: %llvmgxx %s -S -O2 -o - | \
2 // RUN: ignore grep {eh\.selector.*One.*Two.*Three.*Four.*Five.*Six.*null} | \
3 // RUN: wc -l | grep {\[01\]}
14 static void A(void) throw ()
19 static void B(void) throw (Two
)
21 try { A(); } catch (One
) {}
24 static void C(void) throw (Six
, Five
)
26 try { B(); } catch (Three
) {} catch (Four
) {}
31 try { C(); } catch (...) {}