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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [pr17724-2.C] - Rev 693

Compare with Previous | Blame | View Log

// PR tree-optimization/17724
// { dg-do compile }
// { dg-options "-O2" }

namespace N { char *strcpy (char *, const char *); }
extern "C" char *strcpy (char *, const char *);
inline char *N::strcpy (char *s, const char *t) { return ::strcpy (s, t); }

struct S { ~S (); };
int foo ();

int
main ()
{
  S s;
  int a;
  char b[64];
  N::strcpy (b, "ABCDEFGHIJKLM");
  while ((a = foo ()) != -1)
    if (a)
      return -1;
  return 0;
}

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.