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++.bugs/] [900407_01.C] - Diff between revs 305 and 338

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

Rev 305 Rev 338
// { dg-do assemble  }
// { dg-do assemble  }
// g++ 1.37.1 bug 900407_01
// g++ 1.37.1 bug 900407_01
// g++ fails to flag errors for uses of anachronistic features such as the
// g++ fails to flag errors for uses of anachronistic features such as the
// invocation of a base class constructor in a ctor-initializer list without
// invocation of a base class constructor in a ctor-initializer list without
// explicitly giving its name.
// explicitly giving its name.
// Errors should probably be issued for such usage unless the -traditional
// Errors should probably be issued for such usage unless the -traditional
// option is used.
// option is used.
// Warnings are however issued.
// Warnings are however issued.
// Cfront 2.0 flags such usage as an error when the +p (pure-language) option
// Cfront 2.0 flags such usage as an error when the +p (pure-language) option
// is used.
// is used.
// Cfront 2.0 passes this test.
// Cfront 2.0 passes this test.
// keywords: anachronism, inheritance, initialization, mem-initializer
// keywords: anachronism, inheritance, initialization, mem-initializer
struct s0 {
struct s0 {
  int member;
  int member;
  s0 ();
  s0 ();
};
};
s0::s0() { }
s0::s0() { }
struct s1 : public s0 {
struct s1 : public s0 {
  int member;
  int member;
  s1 ();
  s1 ();
};
};
s1::s1() : () {         // { dg-error "" } anachronism used
s1::s1() : () {         // { dg-error "" } anachronism used
}
}
int main () { return 0; }
int main () { return 0; }
 
 

powered by: WebSVN 2.1.0

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