⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crossjump1.c

📁 linux下编程用 编译软件
💻 C
字号:
// This testcase failed on s390, because cross-jumping merged 2 calls,// one with REG_EH_REGION note with no handlers (ie. termination)// and one without REG_EH_REGION note.// { dg-do run }// { dg-options "-O2" }#include <exception>#include <string>struct E : public std::exception{  std::string m;  E () : m ("test") { }  ~E () throw() { }};struct C : public E { };void foo (){  throw C ();}int main (){  try    {      foo ();    }  catch (...) { }}

⌨️ 快捷键说明

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