OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr42049.c] - Diff between revs 297 and 338

Only display areas with differences | Details | Blame | View Log

Rev 297 Rev 338
/* PR middle-end/42049 */
/* PR middle-end/42049 */
 
 
extern char *strcpy (char *s1, const char *s2);
extern char *strcpy (char *s1, const char *s2);
struct S { char s[4]; };
struct S { char s[4]; };
 
 
int
int
foo (int x, char **y)
foo (int x, char **y)
{
{
  char const *a;
  char const *a;
  char const *b;
  char const *b;
  struct S s[9];
  struct S s[9];
  long i;
  long i;
  if (x > 1)
  if (x > 1)
    a = y[1];
    a = y[1];
  else
  else
    a = "abc";
    a = "abc";
  if (x > 2)
  if (x > 2)
    b = y[2];
    b = y[2];
  else
  else
    b = "def";
    b = "def";
  strcpy (s[0].s, a);
  strcpy (s[0].s, a);
  strcpy (s[1].s, b);
  strcpy (s[1].s, b);
  for (i = 2; i < x - 2 && i < 8; i++)
  for (i = 2; i < x - 2 && i < 8; i++)
    strcpy (s[i].s, y[i + 1]);
    strcpy (s[i].s, y[i + 1]);
  s[i].s[0] = '\0';
  s[i].s[0] = '\0';
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.