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

📄 cleanup3.c

📁 用于进行gcc测试
💻 C
字号:
// Check that on targets with "__cxa_atexit" we use destructors,// rather than cleanup functions, to destroy objects with static// storage duration.// { dg-require-effective-target "cxa_atexit" }// Cleanup functions generated by G++ have the "_tcf" prefix.// { dg-final { scan-assembler-not "_tcf" } }struct S {   ~S();};struct T {   S s;};S s;T t;void f() {  static S s;}

⌨️ 快捷键说明

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