[Issue 2905] [PATCH] Faster +-*/ involving a floating-pointing literal

2015-06-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2905 Andrei Alexandrescu and...@erdani.com changed: What|Removed |Added Version|2.029 |D2 --

[Issue 2905] [PATCH] Faster +-*/ involving a floating-pointing literal

2009-10-06 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2905 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 2905] [PATCH] Faster +-*/ involving a floating-pointing literal

2009-07-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2905 --- Comment #6 from Don clugd...@yahoo.com.au 2009-07-10 07:37:23 PDT --- Revised patch against DMD2.031, which fixes the problem, and optimises a larger number of cases. This patch significantly improves performance of floating-point

[Issue 2905] [PATCH] Faster +-*/ involving a floating-pointing literal

2009-07-06 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2905 --- Comment #4 from Don clugd...@yahoo.com.au 2009-07-06 04:17:32 PDT --- (In reply to comment #3) The patch is incomplete, compile the test program with -O and it fails with an internal error. Haven't investigated why. OK, I'm on it. --

[Issue 2905] [PATCH] Faster +-*/ involving a floating-pointing literal

2009-07-06 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2905 --- Comment #5 from Don clugd...@yahoo.com.au 2009-07-06 04:54:46 PDT --- This is a minimal case which ICEs with the patch. Order of terms in the expression is important. void foo(real z) {} void main (){ real F = 1; foo( 1 +

[Issue 2905] [PATCH] Faster +-*/ involving a floating-pointing literal

2009-07-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2905 --- Comment #2 from Walter Bright bugzi...@digitalmars.com 2009-07-03 23:34:45 PDT --- Created an attachment (id=412) -- (http://d.puremagic.com/issues/attachment.cgi?id=412) test program for fp patch -- Configure issuemail:

[Issue 2905] [PATCH] Faster +-*/ involving a floating-pointing literal

2009-07-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2905 --- Comment #3 from Walter Bright bugzi...@digitalmars.com 2009-07-03 23:36:52 PDT --- The patch is incomplete, compile the test program with -O and it fails with an internal error. Haven't investigated why. -- Configure issuemail:

[Issue 2905] [PATCH] Faster +-*/ involving a floating-pointing literal

2009-04-27 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2905 --- Comment #1 from clugd...@yahoo.com.au 2009-04-27 07:57 --- Created an attachment (id=342) -- (http://d.puremagic.com/issues/attachment.cgi?id=342action=view) Patch against DMD2.029 Includes patch for 2888 as well. --