OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [eh/] [comdat1.C] - Rev 301

Compare with Previous | Blame | View Log

// PR target/29487
// { dg-do link }
// { dg-options "-O2" }

/* This function is not defined.  The compiler should optimize away
   all 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 above
       can throw exceptions, and therefore remove this code as
       unreachable.  */
    undefined ();
  }
}

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.