[Bug target/22576] [4.0/4.1 regression] ICE with simple factorial program compiled with -ffast-math on gcc 4.0.2

2005-10-06 Thread cvs-commit at gcc dot gnu dot org
--- Comment #15 from cvs-commit at gcc dot gnu dot org 2005-10-07 05:32 --- Subject: Bug 22576 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED]2005-10-07 05:32:37 Modified files: gcc: ChangeLog

[Bug target/22576] [4.0/4.1 regression] ICE with simple factorial program compiled with -ffast-math on gcc 4.0.2

2005-09-26 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-26 19:20 --- Subject: Bug 22576 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-09-26 19:19:43 Modified files: gcc/testsuite : ChangeLog Added files: gcc/t

[Bug target/22576] [4.0/4.1 regression] ICE with simple factorial program compiled with -ffast-math on gcc 4.0.2

2005-07-21 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-21 20:33 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug target/22576] [4.0/4.1 regression] ICE with simple factorial program compiled with -ffast-math on gcc 4.0.2

2005-07-21 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-07-21 19:56 --- Subject: Bug 22576 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-07-21 19:56:30 Modified files: gcc: Change

[Bug target/22576] [4.0/4.1 regression] ICE with simple factorial program compiled with -ffast-math on gcc 4.0.2

2005-07-21 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-07-21 19:55 --- Subject: Bug 22576 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-07-21 19:55:03 Modified files: gcc: ChangeLog gcc/config/i386: i

[Bug target/22576] [4.0/4.1 regression] ICE with simple factorial program compiled with -ffast-math on gcc 4.0.2

2005-07-21 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2005-07-21 17:07 --- The problem is related to PR22585 where another ICE with long doubles occurs. Unfortunately Uros' patch doesn't fix the problem there. -- What|Removed |Added --

[Bug target/22576] [4.0/4.1 regression] ICE with simple factorial program compiled with -ffast-math on gcc 4.0.2

2005-07-21 Thread uros at kss-loka dot si
--- Additional Comments From uros at kss-loka dot si 2005-07-21 08:01 --- Patch that fixes attached testcase and reduced testcase from comment #7. BTW: In the attached testcase, there is a comment that program falls apart if long double isn't used. With (patched) gcc-4.1 CVS, it works

[Bug target/22576] [4.0/4.1 regression] ICE with simple factorial program compiled with -ffast-math on gcc 4.0.2

2005-07-20 Thread black dot hole dot sun16 at gmail dot com
--- Additional Comments From black dot hole dot sun16 at gmail dot com 2005-07-20 23:13 --- (From update of attachment 9309) >#include > >/* Program prints the first 10 postitive integers and their factorials */ > >main() >{ >long double i, j, k = 1; > >for(i = 1; i <= 100; i++) >

[Bug target/22576] [4.0/4.1 regression] ICE with simple factorial program compiled with -ffast-math on gcc 4.0.2

2005-07-20 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2005-07-20 21:26 --- Reduced testcase: int foo(long double d) { return d==0; } Comparison of long doubles with zero seems to be a problem. This is a regression from gcc 3.