2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-18 01:20:48 +08:00

New test case for SMS.

From-SVN: r97312
This commit is contained in:
Mostafa Hagog 2005-03-31 09:24:33 +00:00 committed by Mostafa Hagog
parent f0d8282514
commit 2767f25897
2 changed files with 18 additions and 0 deletions
gcc
ChangeLog
testsuite/gcc.dg

@ -1,3 +1,7 @@
2005-03-31 Mostafa Hagog <mustafa@il.ibm.com>
* testsuite/gcc.dg/20050330-1.c: New test.
2005-03-31 Kazu Hirata <kazu@cs.umass.edu>
* config.gcc: Obsolete i860-*-sysv4*, ip2k-*-elf,

@ -0,0 +1,14 @@
/* 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];
}