From: Jan Hubicka Date: Fri, 20 Nov 2020 10:13:02 +0000 (+0100) Subject: Fix comment in ipa-icf-gimple.c X-Git-Tag: basepoints/gcc-12~3064 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd287abe8cd11cfe9b230b0c9f28e86ecd7859e6;p=thirdparty%2Fgcc.git Fix comment in ipa-icf-gimple.c * ipa-icf-gimple.c (func_checker::operand_equal_p): Fix comment. --- diff --git a/gcc/ipa-icf-gimple.c b/gcc/ipa-icf-gimple.c index 69bc9ab5b344..250f02391db6 100644 --- a/gcc/ipa-icf-gimple.c +++ b/gcc/ipa-icf-gimple.c @@ -314,7 +314,7 @@ func_checker::operand_equal_p (const_tree t1, const_tree t2, default: break; } - /* In gimple all clobbers can be considered equal. We match the right hand + /* In gimple all clobbers can be considered equal. We match the left hand memory accesses. */ if (TREE_CLOBBER_P (t1) || TREE_CLOBBER_P (t2)) return TREE_CLOBBER_P (t1) == TREE_CLOBBER_P (t2);