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]

Fix PR debug/43937


This fixes the regression

FAIL: gcc.dg/guality/inline-params.c  -O1  execution test

introduced a few months ago by the uniquization of constants at the Tree 
level.  We need to mark the new symbol attached to these constants as written, 
like the expression, when it is output for the sake of the DWARF back-end.

Bootstrapped/regtested on x86-64-suse-linux, applied on the mainline as 
obvious.


2010-09-13  Eric Botcazou  <ebotcazou@adacore.com>

	PR debug/43937
	* varasm.c (output_constant_def_contents): Set TREE_ASM_WRITTEN on
	the DECL as well.


-- 
Eric Botcazou
Index: varasm.c
===================================================================
--- varasm.c	(revision 164211)
+++ varasm.c	(working copy)
@@ -3115,7 +3115,7 @@ output_constant_def_contents (rtx symbol
   output_addressed_constants (exp);
 
   /* We are no longer deferring this constant.  */
-  TREE_ASM_WRITTEN (exp) = 1;
+  TREE_ASM_WRITTEN (decl) = TREE_ASM_WRITTEN (exp) = 1;
 
   /* If the constant is part of an object block, make sure that the
      decl has been positioned within its block, but do not write out

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