ssa-sink-4.c

来自「linux下编程用 编译软件」· C语言 代码 · 共 22 行

C
22
字号
/* { dg-do compile } */ /* { dg-options "-O2 -fdump-tree-sink-stats" } */extern int foo (int *, int *);extern int foo2 (int);intmain (int argc){  int a, b, c;  b = argc + 1;  c = argc + 2;  a = b + c;  if (argc)    {      foo (&b, &c);      a = b + c;    }  foo2 (a);}/* We should sink the first a = b + c calculation into the else branch  *//* { dg-final { scan-tree-dump-times "Sunk statements:1" 1 "sink" } } *//* { dg-final { cleanup-tree-dump "sink" } } */

⌨️ 快捷键说明

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