aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1993-08-28 12:22:32 -0700
committerJim Wilson <wilson@gcc.gnu.org>1993-08-28 12:22:32 -0700
commit4418d41b542f8dde947d87cb8b6d0d9e4d61e71b (patch)
tree36e53f12238510e48871e7ccce3c41b051c029fa
parent02881b1b7951e0ab69fcd1876a053f01c00f2ff1 (diff)
downloadgcc-4418d41b542f8dde947d87cb8b6d0d9e4d61e71b.zip
gcc-4418d41b542f8dde947d87cb8b6d0d9e4d61e71b.tar.gz
gcc-4418d41b542f8dde947d87cb8b6d0d9e4d61e71b.tar.bz2
(SELECT_SECTION): Simplify sdata_section test.
From-SVN: r5225
-rw-r--r--gcc/config/mips/mips.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h
index d92801f..dc29dad 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) \