pr32176.c
来自「用于进行gcc测试」· C语言 代码 · 共 29 行
C
29 行
/* Contributed by Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> *//* { dg-do compile } *//* { dg-options "-O2 -fprefetch-loop-arrays -w" } *//* { dg-options "-O2 -fprefetch-loop-arrays -march=i686 -msse" { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */void foo (void){ int i, m; float xa[21]; m = 0; while (1) { i = 0; while (1) { if (xa[(long int)i] == xa[(long int)(i+m)]) _gfortran_abort (); if (i == 10) break; i++; } if (m == 10) break; m++; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?