------- Comment #6 from pinskia at gcc dot gnu dot org 2009-01-21 22:59 -------
(In reply to comment #5)
> I think it is the frontends business to omit the stores.
Or the gimplifier like what happens for GNU C code:
/* For zero sized types only gimplify the left hand side and right hand
side as statements and throw away the assignment. Do this after
gimplify_modify_expr_rhs so we handle TARGET_EXPRs of addressable
types properly. */
The reason why it does not do it for C++ code is because the struct's size are
really 1 instead of 0.
--
pinskia at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|c++ |middle-end
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38851