summaryrefslogtreecommitdiff
path: root/gcc/fold-const.c
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2019-06-03 12:42:14 +0200
committerMartin Liska <marxin@gcc.gnu.org>2019-06-03 10:42:14 +0000
commit4c76ebd05b41db96913d818b28668f8a530340e4 (patch)
treec30814df0c5866d615752f7f816fd282175a137d /gcc/fold-const.c
parentefb34006e9c3f9592edd77bda2e57ce14c65579b (diff)
Fix typo in index comparison of CONSTRUCTOR.
2019-06-03 Martin Liska <mliska@suse.cz> * fold-const.c (operand_equal_p): Fix typo as compare_tree_int returns 0 when operands are equal. From-SVN: r271859
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r--gcc/fold-const.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c
index 42289013cc1..3e066a2ecc4 100644
--- a/gcc/fold-const.c
+++ b/gcc/fold-const.c
@@ -3508,10 +3508,10 @@ operand_equal_p (const_tree arg0, const_tree arg1, unsigned int flags)
positives for GENERIC. */
|| (c0->index
&& (TREE_CODE (c0->index) != INTEGER_CST
- || !compare_tree_int (c0->index, i)))
+ || compare_tree_int (c0->index, i)))
|| (c1->index
&& (TREE_CODE (c1->index) != INTEGER_CST
- || !compare_tree_int (c1->index, i))))
+ || compare_tree_int (c1->index, i))))
return 0;
}
return 1;