www.digitalmars.com         C & C++   DMDScript  

D.gnu - [Bug 171] New: >>>= broken with short integers

Date: Sat, 17 Jan 2015 11:09:37 +0000
MIME-Version: 1.0
Content-Type: text/plain; charset="UTF-8"

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.
Jan 17 2015