Fix comment in ipa-icf-gimple.c

* ipa-icf-gimple.c (func_checker::operand_equal_p): Fix comment.
This commit is contained in:
Jan Hubicka 2020-11-20 11:13:02 +01:00
parent 8e39410125
commit cd287abe8c
1 changed files with 1 additions and 1 deletions

View File

@ -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);