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:
parent
f0d8282514
commit
2767f25897
gcc
@ -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,
|
||||
|
14
gcc/testsuite/gcc.dg/20050330-1.c
Normal file
14
gcc/testsuite/gcc.dg/20050330-1.c
Normal file
@ -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];
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user