From 4418d41b542f8dde947d87cb8b6d0d9e4d61e71b Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Sat, 28 Aug 1993 12:22:32 -0700 Subject: [PATCH] (SELECT_SECTION): Simplify sdata_section test. From-SVN: r5225 --- gcc/config/mips/mips.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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) \ -- 2.30.2