September 07, 2006 [Issue 331] New: performance bug in std.uni.toUniLower / std.uni.toUniUpper | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=331 Summary: performance bug in std.uni.toUniLower / std.uni.toUniUpper Product: D Version: 0.166 Platform: PC OS/Version: Linux Status: NEW Severity: trivial Priority: P2 Component: Phobos AssignedTo: bugzilla@digitalmars.com ReportedBy: thomas-dloop@kuehne.cn Yes I know, an optimising compiler ought to generate identical code for both versions. std/uni.d:55 if (c >= 0x00C0) should be std/uni.d:55 else if (c >= 0x00C0) std/uni.d:121 if (c >= 0x00E0) should be std/uni.d:121 else if (c >= 0x00E0) -- |
November 25, 2006 [Issue 331] performance bug in std.uni.toUniLower / std.uni.toUniUpper | ||||
---|---|---|---|---|
| ||||
Posted in reply to d-bugmail | http://d.puremagic.com/issues/show_bug.cgi?id=331 bugzilla@digitalmars.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Comment #1 from bugzilla@digitalmars.com 2006-11-25 03:27 ------- Fixed DMD 0.175 -- |
Copyright © 1999-2021 by the D Language Foundation