This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH][RFC][4.4] Add may-alias oracle, make SCCVN use it


> + /* Return true, if the two memory references REF1 and REF2 must alias. 
> */ +
> + bool
> + refs_must_alias_p (tree ref1, tree ref2)
> + {
> +   return operand_equal_p (ref1, ref2, 0);
> + }

Why not use alias_sets_must_conflict_p here?

-- 
Eric Botcazou


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]