[Issue 331] New: performance bug in std.uni.toUniLower / std.uni.toUniUpper

d-bugmail at puremagic.com d-bugmail at puremagic.com
Thu Sep 7 14:57:16 PDT 2006


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 at digitalmars.com
        ReportedBy: thomas-dloop at 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)


-- 




More information about the Digitalmars-d-bugs mailing list