Commit 4418d41b by Jim Wilson

(SELECT_SECTION): Simplify sdata_section test.

From-SVN: r5225
parent 02881b1b
...@@ -3450,8 +3450,7 @@ rdata_section () \ ...@@ -3450,8 +3450,7 @@ rdata_section () \
{ \ { \
int size = int_size_in_bytes (TREE_TYPE (DECL)); \ int size = int_size_in_bytes (TREE_TYPE (DECL)); \
\ \
if (size <= mips_section_threshold && size > 0 \ if (size > 0 && size <= mips_section_threshold) \
&& mips_section_threshold > 0) \
sdata_section (); \ sdata_section (); \
\ \
else if (RELOC) \ else if (RELOC) \
......
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