Bug 331 – performance bug in std.uni.toUniLower / std.uni.toUniUpper
Status
RESOLVED
Resolution
FIXED
Severity
trivial
Priority
P2
Component
phobos
Product
D
Version
D1 (retired)
Platform
x86
OS
Linux
Creation time
2006-09-07T16:57:00Z
Last change time
2014-02-15T13:28:48Z
Assigned to
bugzilla
Creator
thomas-dloop
Comments
Comment #0 by thomas-dloop — 2006-09-07T16:57:15Z
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)