loop-18.c

来自「用于进行gcc测试」· C语言 代码 · 共 25 行

C
25
字号
/* A test for # of iterations estimation.  We know that I does not overflow,   thus we can perform strength reduction (even though the 32-bit variable   i is first extended to 64-bit type).  *//* { dg-options "-O2 -fdump-tree-optimized" } *//* { dg-do compile { target x86_64-*-* } } */unsigned bar(void);void foo(unsigned *p, unsigned n){  unsigned i;  for (i = 0; i < n; i++)    p[i] = bar ();}/* Check that the memory reference was replaced with MEM, and that there is no   multiplication.  *//* { dg-final { scan-tree-dump-times "MEM" 1 "optimized" } } *//* { dg-final { scan-tree-dump-times "\[^\\n\\r\]*= \\* " 0 "optimized" } } *//* { dg-final { cleanup-tree-dump "optimized" } } */

⌨️ 快捷键说明

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