January 17, 2015
http://bugzilla.gdcproject.org/show_bug.cgi?id=171

            Bug ID: 171
           Summary: >>>= broken with short integers
           Product: GDC
           Version: development
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: Normal
         Component: gdc
          Assignee: ibuclaw@gdcproject.org
          Reporter: ibuclaw@gdcproject.org

Testcase:

void main()
{
  short a = -1;
  while (a != 0)
    a >>>= 1;
}


This program will loop forever.

-- 
You are receiving this mail because:
You are watching all bug changes.