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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [g++.dg/] [conversion/] [ptrmem8.C] - Diff between revs 301 and 338

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

Rev 301 Rev 338
// Copyright (C) 2007 Free Software Foundation
// Copyright (C) 2007 Free Software Foundation
// Contributed by Ollie Wild 
// Contributed by Ollie Wild 
// { dg-do run }
// { dg-do run }
// Test for proper conversion of null pointers to data members.
// Test for proper conversion of null pointers to data members.
struct B1 {
struct B1 {
  int x;
  int x;
};
};
struct B2 {
struct B2 {
  int x;
  int x;
};
};
struct D : B1, B2 {
struct D : B1, B2 {
  int x;
  int x;
};
};
int main ()
int main ()
{
{
  int D::*pd = 0;
  int D::*pd = 0;
  int B2::*pb2 = 0;
  int B2::*pb2 = 0;
  return pd != pb2;
  return pd != pb2;
}
}
 
 

powered by: WebSVN 2.1.0

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