comdat1.c

来自「用于进行gcc测试」· C语言 代码 · 共 43 行

C
43
字号
// 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 ();  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?