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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [init/] [addr-const1.C] - Rev 154

Go to most recent revision | Compare with Previous | Blame | View Log

// { dg-do run }

// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 19 Apr 2003 <nathan@codesourcery.com>

// PR 9881. address-constant-expression not static initialized

struct bar {
  double p;
}; // bar
    
bar v;
static bool error = false;

struct foo {
  static double *a;
  static double *b;
  static double storage;
};

struct baz {
  baz () {
    if (foo::a != &v.p)
      error = true;
    if (foo::b != &foo::storage)
      error = true;
  }
};

baz f; // Get constructor to run before any other non-static initializers

double *foo::a = &(((bar *)(&v))->p);
double *foo::b = &(((bar *)(&foo::storage))->p);
double foo::storage = 0.0;

int main() {
  return error;
}

Go to most recent revision | 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.