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

📄 update-tailcall.c

📁 linux下编程用 编译软件
💻 C
字号:
/* { dg-options "-O2 -fdump-tree-tailcall -fdump-tree-optimized" } */__attribute__ ((noinline))int factorial(int x){   if (x == 1)     return 1;   else     return x*factorial(--x);}int gbl;intmain(){   gbl = factorial(100);   return 0;}/* { dg-final-use { scan-tree-dump-not "Invalid sum" "tailc"} } *//* { dg-final-use { scan-tree-dump-not "Invalid sum" "optimized"} } *//* { dg-final-use { cleanup-tree-dump "tailc" } } *//* { dg-final-use { cleanup-tree-dump "optimized" } } */

⌨️ 快捷键说明

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