public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/55152] New: MAX_EXPR(a,-a) is really ABS_EXPR(a)
@ 2012-10-31 20:17 glisse at gcc dot gnu.org
  2012-10-31 20:19 ` [Bug middle-end/55152] " pinskia at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: glisse at gcc dot gnu.org @ 2012-10-31 20:17 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55152

             Bug #: 55152
           Summary: MAX_EXPR(a,-a) is really ABS_EXPR(a)
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: glisse@gcc.gnu.org


I tried compiling this code with -Ofast, but *.optimized still only contained a
MAX_EXPR and not an ABS_EXPR (the back-end didn't find the optimization
either).

double f(double a){
  return (a>=-a)?a:-a;
}

It seems that some simple code in fold-const.c could help (fold is called from
the front-end for COND_EXPR), not sure if anything would call it if -a went
though a temporary variable though.


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-07-14 10:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-31 20:17 [Bug middle-end/55152] New: MAX_EXPR(a,-a) is really ABS_EXPR(a) glisse at gcc dot gnu.org
2012-10-31 20:19 ` [Bug middle-end/55152] " pinskia at gcc dot gnu.org
2012-10-31 21:14 ` glisse at gcc dot gnu.org
2012-10-31 21:27 ` glisse at gcc dot gnu.org
2012-12-09  3:02 ` pinskia at gcc dot gnu.org
2013-07-14 10:31 ` glisse at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).