[Issue 15204] wrong code with -m32 -O -release (floating points, x86)

2016-04-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15204

--- Comment #7 from Илья Ярошенко  ---
(In reply to Vladimir Panteleev from comment #6)
> (In reply to Илья Ярошенко from comment #5)
> > Fixed somehow O_o
> 
> Perhaps a duplicate of 15861 ?

I don't know

--


[Issue 15204] wrong code with -m32 -O -release (floating points, x86)

2016-04-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15204

--- Comment #6 from Vladimir Panteleev  ---
(In reply to Илья Ярошенко from comment #5)
> Fixed somehow O_o

Perhaps a duplicate of 15861 ?

--


[Issue 15204] wrong code with -m32 -O -release (floating points, x86)

2016-04-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15204

Илья Ярошенко  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #5 from Илья Ярошенко  ---
Fixed somehow O_o

--


[Issue 15204] wrong code with -m32 -O -release (floating points, x86)

2015-11-14 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15204

--- Comment #4 from Илья Ярошенко  ---
(In reply to Vladimir Panteleev from comment #2)
> (In reply to Илья Ярошенко from comment #0)
> > See debug code in https://github.com/D-Programming-Language/phobos/pull/3559
> 
> Can you post a self-contained test case here?

unittest {
double a, b;
a = -5.50533e+307;
b = 4.49423e+307;
writefln("a = %a, b = %a, (a+b)/2.0 = %a", a, b, (a+b)/2.0);
assert((a+b)/2.0 > a);
}

--


[Issue 15204] wrong code with -m32 -O -release (floating points, x86)

2015-11-14 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15204

--- Comment #3 from Илья Ярошенко  ---
unittest {
double a, b;
a = -5.50533e+307;
b = 4.49423e+307;
writefln("a = %a, b = %a, (a+b)/2.0 = %a", a, b, (a+b)/2.0);
assert((a+b)/2.0 > a);
}

--


[Issue 15204] wrong code with -m32 -O -release (floating points, x86)

2015-10-15 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15204

ponce  changed:

   What|Removed |Added

 CC||alil...@gmail.com

--- Comment #1 from ponce  ---
I'm also encountering codegen problems since dmd >= 2.069-b1
Still working on reducing that.

--


[Issue 15204] wrong code with -m32 -O -release (floating points, x86)

2015-10-15 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15204

Vladimir Panteleev  changed:

   What|Removed |Added

 CC||thecybersha...@gmail.com

--- Comment #2 from Vladimir Panteleev  ---
(In reply to Илья Ярошенко from comment #0)
> See debug code in https://github.com/D-Programming-Language/phobos/pull/3559

Can you post a self-contained test case here?

--


[Issue 15204] wrong code with -m32 -O -release (floating points, x86)

2015-10-14 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15204

Илья Ярошенко  changed:

   What|Removed |Added

   Keywords||wrong-code

--