This is the mail archive of the gcc-patches@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: [lto][patch] Emit common variables


On Wed, Jul 23, 2008 at 12:33, Rafael Espindola <espindola@google.com> wrote:

> @@ -2314,7 +2314,8 @@ output_constructors_and_inits (void)
>  	  output_expr_operand (ob, var);
>  	
>  	  LTO_DEBUG_TOKEN ("init");
> -	  output_expr_operand (ob, DECL_INITIAL (var));
> +	  if (DECL_INITIAL (var))
> +	    output_expr_operand (ob, DECL_INITIAL (var));
>  	}

Oh, right.  Sorry I missed that.

This is OK, of course.


Diego.


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