Commit 2ba3d2a9 by Nick Clifton Committed by Nick Clifton

mn10300.c (mn10300_encode_section_info): Call default_encode_section_info.

	* config/mn10300/mn10300.c (mn10300_encode_section_info): Call
	default_encode_section_info.

From-SVN: r189316
parent dea8f801
2012-07-06 Nick Clifton <nickc@redhat.com>
* config/mn10300/mn10300.c (mn10300_encode_section_info): Call
default_encode_section_info.
2012-07-06 Uros Bizjak <ubizjak@gmail.com> 2012-07-06 Uros Bizjak <ubizjak@gmail.com>
PR target/53811 PR target/53811
......
...@@ -2468,12 +2468,15 @@ mn10300_rtx_costs (rtx x, int code, int outer_code, int opno ATTRIBUTE_UNUSED, ...@@ -2468,12 +2468,15 @@ mn10300_rtx_costs (rtx x, int code, int outer_code, int opno ATTRIBUTE_UNUSED,
may access it using GOTOFF instead of GOT. */ may access it using GOTOFF instead of GOT. */
static void static void
mn10300_encode_section_info (tree decl, rtx rtl, int first ATTRIBUTE_UNUSED) mn10300_encode_section_info (tree decl, rtx rtl, int first)
{ {
rtx symbol; rtx symbol;
default_encode_section_info (decl, rtl, first);
if (! MEM_P (rtl)) if (! MEM_P (rtl))
return; return;
symbol = XEXP (rtl, 0); symbol = XEXP (rtl, 0);
if (GET_CODE (symbol) != SYMBOL_REF) if (GET_CODE (symbol) != SYMBOL_REF)
return; return;
......
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