This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Using Compound Literal + type-punning to initialize static const array


On 24/11/2014 17:53, Mason wrote:

> Consider the following code: [big snip]

(Perhaps my previous message was too verbose.)

Why does gcc reject the following code:

union foob { int val; struct { int X; } bits; };
static const int u = ((union foob) {.bits = { .X=42 }}).val;

$ gcc -std=gnu89 test.c
test.c:2:30: error: initializer element is not constant
  static const int u = ((union foob) {.bits = { .X=42 }}).val;

Is this related to bug 64067?
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64067

Regards.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]