public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine
@ 2013-06-02  8:54 gjl at gcc dot gnu.org
  2013-06-02  9:00 ` [Bug middle-end/57503] " gjl at gcc dot gnu.org
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: gjl at gcc dot gnu.org @ 2013-06-02  8:54 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 57503
           Summary: [4.7/4.8 Regression] Expand uses wrong multiply
                    routine
           Product: gcc
           Version: 4.7.2
            Status: UNCONFIRMED
          Keywords: wrong-code
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gjl at gcc dot gnu.org
            Target: avr

Created attachment 30241
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=30241&action=edit
cecky.c

== Test case ==

#include <stdlib.h>

long __attribute__((__noinline__))
rot (unsigned char v)
{
    unsigned vs = v * 255;
    return (long) vs * 254;
}

int main (void)
{
    long r = rot (129);

    if (r != 8355330)
        abort();
    exit (0);
}

This program hits abort if compiled with 4.7.2 or 4.8.0.

== Command line ==

avr-gcc -mmcu=atmega168 cecky.c -Os -save-temps -dp -funsigned-char -o
cecky.elf -fdump-rtl-expand-details

== Configure == 

Configured with: ../../gcc.gnu.org/gcc-4_7-branch/configure --target=avr
--prefix=/local/gnu/install/gcc-4.7 --enable-languages=c,c++ --disable-nls
--disable-shared --with-dwarf2 --with-avrlibc=yes


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

* [Bug middle-end/57503] [4.7/4.8 Regression] Expand uses wrong multiply routine
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
@ 2013-06-02  9:00 ` gjl at gcc dot gnu.org
  2013-06-02  9:00 ` gjl at gcc dot gnu.org
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: gjl at gcc dot gnu.org @ 2013-06-02  9:00 UTC (permalink / raw)
  To: gcc-bugs

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

Georg-Johann Lay <gjl at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2013-06-02
     Ever confirmed|0                           |1


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

* [Bug middle-end/57503] [4.7/4.8 Regression] Expand uses wrong multiply routine
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
  2013-06-02  9:00 ` [Bug middle-end/57503] " gjl at gcc dot gnu.org
@ 2013-06-02  9:00 ` gjl at gcc dot gnu.org
  2013-06-02  9:02 ` gjl at gcc dot gnu.org
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: gjl at gcc dot gnu.org @ 2013-06-02  9:00 UTC (permalink / raw)
  To: gcc-bugs

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

Georg-Johann Lay <gjl at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gjl at gcc dot gnu.org

--- Comment #1 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
Created attachment 30242
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=30242&action=edit
.expand dump

Notice that in rot(), long D.1484_5 is unused and instead the 32-bit value
D.1482_3 is used.

BTW, what does "w*" mean?



;; Function rot (rot, funcdef_no=4, decl_uid=1471, cgraph_uid=4)

rot (unsigned char v)
{
  long int D.1484;
  long int D.1483;
  int D.1482;
  int D.1481;

  # BLOCK 2 freq:10000
  # PRED: ENTRY [100.0%]  (fallthru,exec)
  D.1481_2 = (int) v_1(D);
  D.1482_3 = v_1(D) w* 255;
  D.1484_5 = (long int) D.1482_3;
  D.1483_6 = D.1482_3 w* 254;
  return D.1483_6;
  # SUCC: EXIT [100.0%] 
}


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

* [Bug middle-end/57503] [4.7/4.8 Regression] Expand uses wrong multiply routine
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
  2013-06-02  9:00 ` [Bug middle-end/57503] " gjl at gcc dot gnu.org
  2013-06-02  9:00 ` gjl at gcc dot gnu.org
@ 2013-06-02  9:02 ` gjl at gcc dot gnu.org
  2013-06-02 15:50 ` pinskia at gcc dot gnu.org
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: gjl at gcc dot gnu.org @ 2013-06-02  9:02 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
(In reply to Georg-Johann Lay from comment #1)
> Created attachment 30242 [details]
> .expand dump
> 
> Notice that in rot(), long D.1484_5 is unused and instead the 32-bit value
> D.1482_3 is used.

16-bit, of course.  In the s-file you can see that __usmulhisi3 is used.  This
is a widening 16-bit unsigned * 16-bit signed multiplication and not correct
here.


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

* [Bug middle-end/57503] [4.7/4.8 Regression] Expand uses wrong multiply routine
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2013-06-02  9:02 ` gjl at gcc dot gnu.org
@ 2013-06-02 15:50 ` pinskia at gcc dot gnu.org
  2013-06-02 17:34 ` gjl at gcc dot gnu.org
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: pinskia at gcc dot gnu.org @ 2013-06-02 15:50 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I thought this was fixed for 4.8 by bug 54295.


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

* [Bug middle-end/57503] [4.7/4.8 Regression] Expand uses wrong multiply routine
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2013-06-02 15:50 ` pinskia at gcc dot gnu.org
@ 2013-06-02 17:34 ` gjl at gcc dot gnu.org
  2013-06-03  8:43 ` rguenth at gcc dot gnu.org
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: gjl at gcc dot gnu.org @ 2013-06-02 17:34 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
Created attachment 30246
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=30246&action=edit
cecky2.s: Addembler dump with -dP from 4.8.0 (experimental) 2013-03-06


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

* [Bug middle-end/57503] [4.7/4.8 Regression] Expand uses wrong multiply routine
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2013-06-02 17:34 ` gjl at gcc dot gnu.org
@ 2013-06-03  8:43 ` rguenth at gcc dot gnu.org
  2013-09-09  8:14 ` rguenth at gcc dot gnu.org
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: rguenth at gcc dot gnu.org @ 2013-06-03  8:43 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.7.4


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

* [Bug middle-end/57503] [4.7/4.8 Regression] Expand uses wrong multiply routine
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2013-06-03  8:43 ` rguenth at gcc dot gnu.org
@ 2013-09-09  8:14 ` rguenth at gcc dot gnu.org
  2013-10-07  9:19 ` gjl at gcc dot gnu.org
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: rguenth at gcc dot gnu.org @ 2013-09-09  8:14 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
Can you please investigate the behavior on current trunk and the top of the 4.8
branch?


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

* [Bug middle-end/57503] [4.7/4.8 Regression] Expand uses wrong multiply routine
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2013-09-09  8:14 ` rguenth at gcc dot gnu.org
@ 2013-10-07  9:19 ` gjl at gcc dot gnu.org
  2013-10-07 10:18 ` gjl at gcc dot gnu.org
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: gjl at gcc dot gnu.org @ 2013-10-07  9:19 UTC (permalink / raw)
  To: gcc-bugs

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

Georg-Johann Lay <gjl at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW

--- Comment #8 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
(In reply to Richard Biener from comment #7)
> Can you please investigate the behavior on current trunk and the top of the
> 4.8 branch?

Using the code from comment #7 the problem persists

$ avr-gcc -S -Os pr57503.c -mmcu=atmega8 -dP


long
func1 (unsigned char a, unsigned char b, int c)
{
    unsigned ab = a * b;
    return (long) ab * c;
}


The code is a bit different but still wrong:


func1:
 ; (insn 10 5 25 (set (reg:HI 18 r18 [orig:44 D.1450 ] [44])
 ;         (mult:HI (zero_extend:HI (reg:QI 24 r24 [ a ]))
 ;             (zero_extend:HI (reg/v:QI 22 r22 [orig:50 b ] [50]))))
pr57503.c:4 168 {umulqihi3}
 ;      (expr_list:REG_DEAD (reg:QI 24 r24 [ a ])
 ;         (expr_list:REG_DEAD (reg/v:QI 22 r22 [orig:50 b ] [50])
 ;             (nil))))
    mul r24,r22     ;  10    umulqihi3    [length = 3]
    movw r18,r0
    clr __zero_reg__
 ; (insn 25 10 26 (set (reg:HI 26 r26)
 ;         (reg/v:HI 20 r20 [orig:51 c ] [51])) pr57503.c:5 82 {*movhi}
 ;      (expr_list:REG_DEAD (reg/v:HI 20 r20 [orig:51 c ] [51])
 ;         (nil)))
    movw r26,r20     ;  25    *movhi/1    [length = 1]
 ; (insn 26 25 21 (set (reg:SI 22 r22)
 ;         (mult:SI (sign_extend:SI (reg:HI 18 r18))
 ;             (sign_extend:SI (reg:HI 26 r26)))) pr57503.c:5 231
{*mulhisi3_call}
 ;      (expr_list:REG_DEAD (reg:HI 26 r26)
 ;         (expr_list:REG_DEAD (reg:HI 18 r18)
 ;             (nil))))
    rcall __mulhisi3     ;  26    *mulhisi3_call    [length = 1]
 ; (jump_insn 31 21 30 (return) pr57503.c:6 451 {return}
 ;      (nil)
 ;  -> return)
    ret     ;  31    return    [length = 1]


Insn 26 sign-extends both inputs but R18 (unsigned ab) should be zero-extended.

Tested with SVN 203240

gcc version 4.9.0 20131007 (experimental) (GCC)


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

* [Bug middle-end/57503] [4.7/4.8 Regression] Expand uses wrong multiply routine
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
                   ` (7 preceding siblings ...)
  2013-10-07  9:19 ` gjl at gcc dot gnu.org
@ 2013-10-07 10:18 ` gjl at gcc dot gnu.org
  2013-11-22 10:48 ` [Bug middle-end/57503] [4.7/4.8/4.9 " rguenth at gcc dot gnu.org
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: gjl at gcc dot gnu.org @ 2013-10-07 10:18 UTC (permalink / raw)
  To: gcc-bugs

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

Georg-Johann Lay <gjl at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|                            |4.7.2, 4.8.1, 4.9.0

--- Comment #9 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
(In reply to Richard Biener from comment #7)
> Can you please investigate the behavior on current trunk and the top of the
> 4.8 branch?

Same applies to the 4.8 branch, again it is insn 26 that is wrong:

func1:
 ; (insn 10 5 25 (set (reg:HI 18 r18 [orig:44 D.1447 ] [44])
 ;         (mult:HI (zero_extend:HI (reg:QI 24 r24 [ a ]))
 ;             (zero_extend:HI (reg/v:QI 22 r22 [orig:50 b ] [50]))))
pr57503.c:4 168 {umulqihi3}
 ;      (expr_list:REG_DEAD (reg:QI 24 r24 [ a ])
 ;         (expr_list:REG_DEAD (reg/v:QI 22 r22 [orig:50 b ] [50])
 ;             (nil))))
    mul r24,r22     ;  10    umulqihi3    [length = 3]
    movw r18,r0
    clr __zero_reg__
 ; (insn 25 10 26 (set (reg:HI 26 r26)
 ;         (reg/v:HI 20 r20 [orig:51 c ] [51])) pr57503.c:5 82 {*movhi}
 ;      (expr_list:REG_DEAD (reg/v:HI 20 r20 [orig:51 c ] [51])
 ;         (nil)))
    movw r26,r20     ;  25    *movhi/1    [length = 1]
 ; (insn 26 25 21 (set (reg:SI 22 r22)
 ;         (mult:SI (sign_extend:SI (reg:HI 18 r18))
 ;             (sign_extend:SI (reg:HI 26 r26)))) pr57503.c:5 231
{*mulhisi3_call}
 ;      (expr_list:REG_DEAD (reg:HI 26 r26)
 ;         (expr_list:REG_DEAD (reg:HI 18 r18)
 ;             (nil))))
    rcall __mulhisi3     ;  26    *mulhisi3_call    [length = 1]
 ; (jump_insn 31 21 30 (return) pr57503.c:6 451 {return}
 ;      (nil)
 ;  -> return)
    ret     ;  31    return    [length = 1]
    .size    func1, .-func1
    .ident    "GCC: (GNU) 4.8.2 20131007 (prerelease)"


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

* [Bug middle-end/57503] [4.7/4.8/4.9 Regression] Expand uses wrong multiply routine
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
                   ` (8 preceding siblings ...)
  2013-10-07 10:18 ` gjl at gcc dot gnu.org
@ 2013-11-22 10:48 ` rguenth at gcc dot gnu.org
  2014-06-12 13:49 ` [Bug middle-end/57503] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: rguenth at gcc dot gnu.org @ 2013-11-22 10:48 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4


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

* [Bug middle-end/57503] [4.7/4.8/4.9/4.10 Regression] Expand uses wrong multiply routine
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
                   ` (9 preceding siblings ...)
  2013-11-22 10:48 ` [Bug middle-end/57503] [4.7/4.8/4.9 " rguenth at gcc dot gnu.org
@ 2014-06-12 13:49 ` rguenth at gcc dot gnu.org
  2014-12-19 13:33 ` [Bug middle-end/57503] [4.8/4.9/5 " jakub at gcc dot gnu.org
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-06-12 13:49 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57503

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.7.4                       |4.8.4

--- Comment #10 from Richard Biener <rguenth at gcc dot gnu.org> ---
The 4.7 branch is being closed, moving target milestone to 4.8.4.


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

* [Bug middle-end/57503] [4.8/4.9/5 Regression] Expand uses wrong multiply routine
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
                   ` (10 preceding siblings ...)
  2014-06-12 13:49 ` [Bug middle-end/57503] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
@ 2014-12-19 13:33 ` jakub at gcc dot gnu.org
  2015-06-23  8:26 ` [Bug middle-end/57503] [4.8/4.9/5/6 " rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jakub at gcc dot gnu.org @ 2014-12-19 13:33 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57503

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.8.4                       |4.8.5

--- Comment #11 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 4.8.4 has been released.


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

* [Bug middle-end/57503] [4.8/4.9/5/6 Regression] Expand uses wrong multiply routine
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
                   ` (11 preceding siblings ...)
  2014-12-19 13:33 ` [Bug middle-end/57503] [4.8/4.9/5 " jakub at gcc dot gnu.org
@ 2015-06-23  8:26 ` rguenth at gcc dot gnu.org
  2015-06-26 20:01 ` [Bug middle-end/57503] [4.9/5/6 " jakub at gcc dot gnu.org
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-06-23  8:26 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57503

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.8.5                       |4.9.3

--- Comment #12 from Richard Biener <rguenth at gcc dot gnu.org> ---
The gcc-4_8-branch is being closed, re-targeting regressions to 4.9.3.


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

* [Bug middle-end/57503] [4.9/5/6 Regression] Expand uses wrong multiply routine
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
                   ` (12 preceding siblings ...)
  2015-06-23  8:26 ` [Bug middle-end/57503] [4.8/4.9/5/6 " rguenth at gcc dot gnu.org
@ 2015-06-26 20:01 ` jakub at gcc dot gnu.org
  2015-06-26 20:31 ` jakub at gcc dot gnu.org
  2022-01-09  0:57 ` [Bug tree-optimization/57503] Missing warning for signed overflow pinskia at gcc dot gnu.org
  15 siblings, 0 replies; 17+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 20:01 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57503

--- Comment #13 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 4.9.3 has been released.


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

* [Bug middle-end/57503] [4.9/5/6 Regression] Expand uses wrong multiply routine
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
                   ` (13 preceding siblings ...)
  2015-06-26 20:01 ` [Bug middle-end/57503] [4.9/5/6 " jakub at gcc dot gnu.org
@ 2015-06-26 20:31 ` jakub at gcc dot gnu.org
  2022-01-09  0:57 ` [Bug tree-optimization/57503] Missing warning for signed overflow pinskia at gcc dot gnu.org
  15 siblings, 0 replies; 17+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 20:31 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57503

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.9.3                       |4.9.4


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

* [Bug tree-optimization/57503] Missing warning for signed overflow
  2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
                   ` (14 preceding siblings ...)
  2015-06-26 20:31 ` jakub at gcc dot gnu.org
@ 2022-01-09  0:57 ` pinskia at gcc dot gnu.org
  15 siblings, 0 replies; 17+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-01-09  0:57 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57503

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.5                         |---

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

end of thread, other threads:[~2022-01-09  0:57 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-02  8:54 [Bug middle-end/57503] New: [4.7/4.8 Regression] Expand uses wrong multiply routine gjl at gcc dot gnu.org
2013-06-02  9:00 ` [Bug middle-end/57503] " gjl at gcc dot gnu.org
2013-06-02  9:00 ` gjl at gcc dot gnu.org
2013-06-02  9:02 ` gjl at gcc dot gnu.org
2013-06-02 15:50 ` pinskia at gcc dot gnu.org
2013-06-02 17:34 ` gjl at gcc dot gnu.org
2013-06-03  8:43 ` rguenth at gcc dot gnu.org
2013-09-09  8:14 ` rguenth at gcc dot gnu.org
2013-10-07  9:19 ` gjl at gcc dot gnu.org
2013-10-07 10:18 ` gjl at gcc dot gnu.org
2013-11-22 10:48 ` [Bug middle-end/57503] [4.7/4.8/4.9 " rguenth at gcc dot gnu.org
2014-06-12 13:49 ` [Bug middle-end/57503] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
2014-12-19 13:33 ` [Bug middle-end/57503] [4.8/4.9/5 " jakub at gcc dot gnu.org
2015-06-23  8:26 ` [Bug middle-end/57503] [4.8/4.9/5/6 " rguenth at gcc dot gnu.org
2015-06-26 20:01 ` [Bug middle-end/57503] [4.9/5/6 " jakub at gcc dot gnu.org
2015-06-26 20:31 ` jakub at gcc dot gnu.org
2022-01-09  0:57 ` [Bug tree-optimization/57503] Missing warning for signed overflow pinskia 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).