20050330-1.c

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

C
15
字号
/* This test is a reduced test case for a bug that caused    ICE while bootstrapping with -fmodulo-sched on powerpc-apple-darwin   related to (PR middle-end/20177).  */ /* { dg-do compile } *//* { dg-options "-O2 -fmodulo-sched" } */void  foo ( const char *bytes, int len , char *buf){  int i;  for ( i = 0; i < len; ++i )    buf[i] = bytes[i];}

⌨️ 快捷键说明

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