From: Jim Wilson Date: Sat, 28 Aug 1993 19:22:32 +0000 (-0700) Subject: (SELECT_SECTION): Simplify sdata_section test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4418d41b542f8dde947d87cb8b6d0d9e4d61e71b;p=gcc.git (SELECT_SECTION): Simplify sdata_section test. From-SVN: r5225 --- diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index d92801f5ed9..dc29dad0e08 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -3450,8 +3450,7 @@ rdata_section () \ { \ int size = int_size_in_bytes (TREE_TYPE (DECL)); \ \ - if (size <= mips_section_threshold && size > 0 \ - && mips_section_threshold > 0) \ + if (size > 0 && size <= mips_section_threshold) \ sdata_section (); \ \ else if (RELOC) \