20031022-1.c

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

C
29
字号
/* { dg-do compile } *//* { dg-options "-O1 -fdump-tree-dom1" } */ typedef struct edge_def{  int z;} *edge;typedef struct basic_block_def{  edge pred;} *basic_block;extern struct basic_block_def entry_exit_blocks[2];voidblah (int arf){  edge e;  e = (&entry_exit_blocks[1])->pred;  for ( ; ;)    if (arf)      break;  commit_edge_insertions ();  e = (&entry_exit_blocks[1])->pred;  foo (e);}/* There should be one load from entry_exit_blocks[1].pred.  *//* { dg-final { scan-tree-dump-times "entry_exit_blocks.1..pred" 1 "dom1"} } *//* { dg-final { cleanup-tree-dump "dom1" } } */

⌨️ 快捷键说明

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