Thread overview | |||||||
---|---|---|---|---|---|---|---|
|
December 01, 2010 [Issue 5293] New: std.math: Error: shift by -48 is outside the range 0..32 | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=5293 Summary: std.math: Error: shift by -48 is outside the range 0..32 Product: D Version: D2 Platform: Other OS/Version: Linux Status: NEW Severity: blocker Priority: P2 Component: Phobos AssignedTo: nobody@puremagic.com ReportedBy: ibuclaw@ubuntu.com --- Comment #0 from Iain Buclaw <ibuclaw@ubuntu.com> 2010-11-30 22:00:59 PST --- On about line 1328 inside frexp is this line: exp = (ex - F.EXPBIAS)>>> 4 - real.mant_dig + 1; Which produces an error when compiled. Is a blocker for building an ARM cross-compiler. Regards -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
December 01, 2010 [Issue 5293] std.math: Error: shift by -48 is outside the range 0..32 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Iain Buclaw | http://d.puremagic.com/issues/show_bug.cgi?id=5293 Iain Buclaw <ibuclaw@ubuntu.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ibuclaw@ubuntu.com --- Comment #1 from Iain Buclaw <ibuclaw@ubuntu.com> 2010-11-30 22:08:20 PST --- Actually, now I've woken up a bit, I *think* what it should be is: @@ -1345,7 +1345,7 @@ // denormal value *= F.RECIP_EPSILON; ex = vu[F.EXPPOS_SHORT] & F.EXPMASK; - exp = (ex - F.EXPBIAS)>>> 4 - real.mant_dig + 1; + exp = ((ex - F.EXPBIAS)>>> 4) - real.mant_dig + 1; vu[F.EXPPOS_SHORT] = cast(ushort)((0x8000 & vu[F.EXPPOS_SHORT]) | 0x3FE0); } Can someone confirm? Regards -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
December 03, 2010 [Issue 5293] std.math: Error: shift by -48 is outside the range 0..32 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Iain Buclaw | http://d.puremagic.com/issues/show_bug.cgi?id=5293 Don <clugdbug@yahoo.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |clugdbug@yahoo.com.au --- Comment #2 from Don <clugdbug@yahoo.com.au> 2010-12-02 21:37:55 PST --- I have posted a fix in svn 2206. Please confirm. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
December 04, 2010 [Issue 5293] std.math: Error: shift by -48 is outside the range 0..32 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Iain Buclaw | http://d.puremagic.com/issues/show_bug.cgi?id=5293 --- Comment #3 from Iain Buclaw <ibuclaw@ubuntu.com> 2010-12-04 15:18:46 PST --- Looks good, makes more sense to use >>, thanks! -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
December 05, 2010 [Issue 5293] std.math: Error: shift by -48 is outside the range 0..32 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Iain Buclaw | http://d.puremagic.com/issues/show_bug.cgi?id=5293 Don <clugdbug@yahoo.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation