Some serious problem with GC again

Graham Stott graham.stott@btinternet.com
Sun Sep 12 17:33:00 GMT 2004


Nathan,

> btw, shouldn't
>   char buf[sizeof (struct tree_decl)];
> be
>   char buf[sizeof (union tree_node)]
>     __attribute__((alignment(alignof (union tree_node))));
> ?
> (The alignment might be overly paranoid.)
> 
> nathan

Why do we need a char buf[]?

What's wrong with using "union tree_node node" directly

Graham



More information about the Gcc mailing list