From Bugzilla Helper: User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows 98) Description of problem: int hal_msbindex(int mask) { int i; for (i = 32; i >= 0; i++) { if (mask & (1<<i)) return (i); } return (-1); } It should be int hal_msbindex(int mask) { int i; for (i = 31; i >= 0; i--) { if (mask & (1<<i)) return (i); } return (-1); } Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1.look it 2.think it 3.ok Additional info:
This bug has moved to http://bugs.ecos.sourceware.org/show_bug.cgi?id=79327