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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr40035.c] - Rev 749

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

typedef __SIZE_TYPE__ size_t;
void *memmove (void *dest, const void *src, size_t count);
size_t strlen (const char *s);
 
int
foo (char *param, char *val)
{
  if (val)
    {
      if (val == param + strlen (param) + 1)
        val[-1] = '=';
      else if (val == param + strlen (param) + 2)
        {
          val[-2] = '=';
          memmove (val - 1, val, strlen (val) + 1);
          val--;
        }
    }
  return 0;
}
 

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

powered by: WebSVN 2.1.0

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