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

📄 20040917-1.c

📁 linux下编程用 编译软件
💻 C
字号:
/* submitted by kenneth zadeck */static int test_var;/* the idea here is that not only is inlinable, inlinable but since it   is static, the cgraph node will not be marked as output.  The   current version of the code ignores these cgraph nodes.  */void not_inlinable()  __attribute__((noinline));static void  inlinable (){  test_var = -10;}void not_inlinable (){  inlinable();}main (){  test_var = 10;  /* Variable test_var should be considered call-clobbered by the call     to not_inlinable().  */  not_inlinable ();  if (test_var == 10)    abort ();  return 0;}

⌨️ 快捷键说明

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