Commit ed4fbfa0 by Olivier Hainque Committed by Richard Kenner

varasm.c (output_constant_def): Don't call ENCODE_SECTION_INFO for INTEGER_CST.

	* varasm.c (output_constant_def): Don't call ENCODE_SECTION_INFO
	for INTEGER_CST.

From-SVN: r51052
parent 6d8e16a4
2002-03-19 Olivier Hainque <hainque@act-europe.fr>
* varasm.c (output_constant_def): Don't call ENCODE_SECTION_INFO
for INTEGER_CST.
2002-03-19 Richard Henderson <rth@redhat.com> 2002-03-19 Richard Henderson <rth@redhat.com>
PR 5977, 5991 PR 5977, 5991
......
...@@ -3299,7 +3299,9 @@ output_constant_def (exp, defer) ...@@ -3299,7 +3299,9 @@ output_constant_def (exp, defer)
encoded in it. */ encoded in it. */
if (! found) if (! found)
{ {
ENCODE_SECTION_INFO (exp, true); if (TREE_CODE (exp) == INTEGER_CSY)
ENCODE_SECTION_INFO (exp, true);
desc->rtl = rtl; desc->rtl = rtl;
desc->label = XSTR (XEXP (desc->rtl, 0), 0); desc->label = XSTR (XEXP (desc->rtl, 0), 0);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment