www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 331] New: performance bug in std.uni.toUniLower / std.uni.toUniUpper

reply d-bugmail puremagic.com writes:
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)


-- 
Sep 07 2006
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=331


bugzilla digitalmars.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED





Fixed DMD 0.175


-- 
Nov 25 2006