Wouldn't it make sense for operand_equal_p to start with:
int
operand_equal_p (tree arg0, tree arg1, unsigned int flags)
{
if (arg0 == arg1 && !TREE_SIDE_EFFECTS (arg0))
return 1;
...
}Am I missing something here? Thanks. Diego.
Wouldn't it make sense for operand_equal_p to start with:
int
operand_equal_p (tree arg0, tree arg1, unsigned int flags)
{
if (arg0 == arg1 && !TREE_SIDE_EFFECTS (arg0))
return 1;
...
}Am I missing something here? Thanks. Diego.