[Bug c/21438] Warning about division by zero depends on lexical form

2024-08-31 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=21438 Andrew Pinski changed: What|Removed |Added Status|ASSIGNED|NEW Assignee|pinskia at gcc do

[Bug c/21438] Warning about division by zero depends on lexical form

2021-09-28 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=21438 Andrew Pinski changed: What|Removed |Added Status|NEW |ASSIGNED Assignee|unassigned a

[Bug c/21438] Warning about division by zero depends on lexical form

2007-03-14 Thread manu at gcc dot gnu dot org
--- Comment #6 from manu at gcc dot gnu dot org 2007-03-14 18:39 --- This is still not fixed. It needs to be re-examined what the proper fix (if any) should be. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21438

[Bug c/21438] Warning about division by zero depends on lexical form

2007-03-14 Thread manu at gcc dot gnu dot org
--- Comment #5 from manu at gcc dot gnu dot org 2007-03-14 18:37 --- Subject: Bug 21438 Author: manu Date: Wed Mar 14 18:37:37 2007 New Revision: 122925 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=122925 Log: 2007-03-14 Manuel Lopez-Ibanez <[EMAIL PROTECTED]> PR c/

[Bug c/21438] Warning about division by zero depends on lexical form

2007-03-11 Thread patchapp at dberlin dot org
--- Comment #4 from patchapp at dberlin dot org 2007-03-12 01:32 --- Subject: Bug number PR 21438 A patch for this bug has been added to the patch tracker. The mailing list url for the patch is http://gcc.gnu.org/ml/gcc-patches/2007-03/msg00700.html -- http://gcc.gnu.org/bugzilla/s

[Bug c/21438] Warning about division by zero depends on lexical form

2007-01-15 Thread patchapp at dberlin dot org
--- Comment #3 from patchapp at dberlin dot org 2007-01-16 00:57 --- Subject: Bug number PR 21438 A patch for this bug has been added to the patch tracker. The mailing list url for the patch is http://gcc.gnu.org/ml/gcc-patches/2007-01/msg01166.html -- http://gcc.gnu.org/bugzilla/s

[Bug c/21438] Warning about division by zero depends on lexical form

2005-05-07 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-05-07 18:20 --- Hmm, I wonder why C++ warns though: t.c:2: warning: division by zero in '1.0e+0f / 0.' t.c:3: warning: division by zero in '1.0e+0f / 0' -- What|Removed |Added --

[Bug c/21438] Warning about division by zero depends on lexical form

2005-05-07 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-05-07 18:18 --- Confirmed, it is obvious from looking at the code what was wrong. The following patch should fix it but I don't have time to test it fully: Index: c-typeck.c ==