URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [eh/] [comdat1.C] - Rev 693
Compare with Previous | Blame | View Log
// PR target/29487// { dg-do link }// { dg-options "-O2" }/* This function is not defined. The compiler should optimize awayall calls to it. */extern void undefined () throw ();extern void f1();inline void f2() {f1();}/* This function will be COMDAT if not inlined. */inline void f1() {}/* This function will be COMDAT. */template <typename T>void f3() {if (false)throw 3;}inline void f4() {if (false)throw 7;}int main () {try {f1();f2();f3<int>();f4();} catch (...) {/* The compiler should recognize that none of the functions abovecan throw exceptions, and therefore remove this code asunreachable. */undefined ();}}
