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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.old-deja/] [g++.jason/] [return.C] - Diff between revs 154 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 816
// { dg-do run  }
// { dg-do run  }
// PRMS Id: 5331
// PRMS Id: 5331
// Bug: the return value of foo is constructed in a temporary and then
// Bug: the return value of foo is constructed in a temporary and then
// copied into the return slot.  This is not necessary.
// copied into the return slot.  This is not necessary.
int c = 0;
int c = 0;
struct X {
struct X {
   X(int i) { }
   X(int i) { }
   X(X const &XX) { c = 1; }
   X(X const &XX) { c = 1; }
   ~X() { }
   ~X() { }
};
};
const X foo() {
const X foo() {
  return X(3);
  return X(3);
}
}
int main()
int main()
{
{
  foo();
  foo();
  return c;
  return c;
}
}
 
 

powered by: WebSVN 2.1.0

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