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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [init/] [array11.C] - Diff between revs 149 and 154

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

Rev 149 Rev 154
/* PR 11665
/* PR 11665
   Orgin: jwhite@cse.unl.edu
   Orgin: jwhite@cse.unl.edu
   The problem was in initializer_constant_valid_p,
   The problem was in initializer_constant_valid_p,
   "for a CONSTRUCTOR, only the last element
   "for a CONSTRUCTOR, only the last element
   of the CONSTRUCTOR was being checked"
   of the CONSTRUCTOR was being checked"
   (from the email of the patch which fixed this).
   (from the email of the patch which fixed this).
   This used to ICE because GCC thought gdt_table was a
   This used to ICE because GCC thought gdt_table was a
   constant value when it is not.  */
   constant value when it is not.  */
int x;
int x;
typedef __SIZE_TYPE__ size_t;
typedef __SIZE_TYPE__ size_t;
struct gdt
struct gdt
{
{
size_t a,b,c,d,e,f;
size_t a,b,c,d,e,f;
};
};
void f()
void f()
{
{
struct gdt gdt_table[2]=
struct gdt gdt_table[2]=
{
{
    {
    {
                0,
                0,
                ( (((size_t)(&x))<<(24))&(-1<<(8)) ),
                ( (((size_t)(&x))<<(24))&(-1<<(8)) ),
    },
    },
};
};
}
}
 
 

powered by: WebSVN 2.1.0

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