ssa-chrec-20.c

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 31 行

C
31
字号
/* APPLE LOCAL file lno *//* { dg-do compile } */ /* { dg-options "-O1 -floop-test -fdump-tree-lptest-details" } */int main (){  int a = 3;  int b = 2;    while (a)    {      b += 5;      a += b;            /* Exercises the sum of a polynomial of degree 2 with an	 evolution of degree 1:	 	 (loop_num = 1, chrec_var = {3, +, 7, +, 5}, to_add = 2).	 The result should be:  {3, +, 9, +, 5}.  */      a += 2;    }}/*    b  ->  {2, +, 5}_1   a  ->  {3, +, {9, +, 5}_1}_1*//* FIXME. */

⌨️ 快捷键说明

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