summaryrefslogtreecommitdiff
path: root/gcc/config/mips/mips.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config/mips/mips.c')
-rw-r--r--gcc/config/mips/mips.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c
index b93e53180d8..f551d627889 100644
--- a/gcc/config/mips/mips.c
+++ b/gcc/config/mips/mips.c
@@ -7913,7 +7913,7 @@ mips_select_rtx_section (mode, x)
{
/* For embedded applications, always put constants in read-only data,
in order to reduce RAM usage. */
- READONLY_DATA_SECTION ();
+ readonly_data_section ();
}
else
{
@@ -7932,7 +7932,7 @@ mips_select_rtx_section (mode, x)
read-only). */
data_section ();
else
- READONLY_DATA_SECTION ();
+ readonly_data_section ();
}
}
@@ -7979,7 +7979,7 @@ mips_select_section (decl, reloc, align)
&& (TREE_CODE (decl) != STRING_CST
|| !flag_writable_strings)))
&& ! (flag_pic && reloc))
- READONLY_DATA_SECTION ();
+ readonly_data_section ();
else if (size > 0 && size <= mips_section_threshold)
SMALL_DATA_SECTION ();
else
@@ -8002,7 +8002,7 @@ mips_select_section (decl, reloc, align)
&& (TREE_CODE (decl) != STRING_CST
|| !flag_writable_strings)))
&& ! (flag_pic && reloc))
- READONLY_DATA_SECTION ();
+ readonly_data_section ();
else
data_section ();
}