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/] [g++.old-deja/] [g++.law/] [array1.C] - Diff between revs 305 and 338

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

Rev 305 Rev 338
// { dg-do run  }
// { dg-do run  }
// GROUPS passed arrays
// GROUPS passed arrays
// array file
// array file
// Message-Id: <9204120353.AA06266@cs.rice.edu>
// Message-Id: <9204120353.AA06266@cs.rice.edu>
// From: dougm@cs.rice.edu (Doug Moore)
// From: dougm@cs.rice.edu (Doug Moore)
// Subject: constructors not called on new'ed array elements
// Subject: constructors not called on new'ed array elements
// Date: Sat, 11 Apr 92 22:53:35 CDT
// Date: Sat, 11 Apr 92 22:53:35 CDT
#include 
#include 
int i = 0;
int i = 0;
class foo
class foo
{
{
private:
private:
  static foo *array;
  static foo *array;
public:
public:
  foo()
  foo()
    {
    {
      i++;
      i++;
    }
    }
};
};
foo* foo::array = new foo [5];
foo* foo::array = new foo [5];
int main()
int main()
{
{
  if (i != 5)
  if (i != 5)
    { printf ("FAIL\n"); return 1; }
    { printf ("FAIL\n"); return 1; }
  else
  else
    printf ("PASS\n");
    printf ("PASS\n");
}
}
 
 

powered by: WebSVN 2.1.0

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