loop-6.c
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 27 行
C
27 行
/* { dg-do compile } *//* { dg-options "-O1 -funswitch-loops -fdump-tree-unswitch-details -fdump-tree-vars" } */int ch;int a[100];void xxx(void){ int i; for (i = 0; i < 100; i++) { if (ch) a[i] = ch; else a[i] = i; }}/* Loop should be unswitched. *//* { dg-final { scan-tree-dump-times "Unswitching loop" 1 "unswitch" } } *//* In effect there should be exactly three conditional jumps in the final program. *//* { dg-final { scan-tree-dump-times "else" 3 "vars" } } */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?