This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] correct handling of non-constant width and precision (pr 78521)
On Mon, Dec 05, 2016 at 11:37:23AM -0700, Jeff Law wrote:
> On 12/05/2016 11:30 AM, Marek Polacek wrote:
> >On Mon, Dec 05, 2016 at 11:25:02AM -0700, Jeff Law wrote:
> >>We're already using std::min std::max, std::swap and others.
> >
> >Note we're not using std::min nor std::max. I gave this a shot a while ago,
> >but it didn't pan out:
> >https://gcc.gnu.org/ml/gcc-patches/2015-07/msg00886.html
> >
> > Marek
> >
> tree-ssa-phiprop.c uses std::min and std::max
If you mean the
std::max(std::min(a0, c), std::min(std::max(a1, c), b))
line, that is in a comment.
Jakub