OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pr24367.c] - Blame information for rev 298

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 298 jeremybenn
/* { dg-do compile { target fpic } } */
2
/* { dg-options "-O2 -fPIC -funroll-loops" } */
3
 
4
char *
5
test (const char *parent, const char *child)
6
{
7
  static char rtn_path[1024];
8
  char *s = rtn_path;
9
  char *s_end = rtn_path + sizeof (rtn_path);
10
  const char *s2 = child;
11
 
12
  while (*s != '\0')
13
    s++;
14
  while ((s < s_end) && (*s2 != '\0'))
15
    *s++ = *s2++;
16
  return (rtn_path);
17
}

powered by: WebSVN 2.1.0

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