Bug 54 - Unsigned long comparison fails on Microblaze.
Summary: Unsigned long comparison fails on Microblaze.
Status: RESOLVED INVALID
Alias: None
Product: ELLCC
Classification: Unclassified
Component: ecc (show other bugs)
Version: unspecified
Hardware: PC Linux
: --- normal
Assignee: Richard Pennington
URL:
Depends on:
Blocks: 36
  Show dependency tree
 
Reported: 2012-07-03 14:14 CDT by Richard Pennington
Modified: 2017-07-29 10:42 CDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Richard Pennington 2012-07-03 14:14:14 CDT
This program prints "foo":

#include <stdio.h>
        
int main()
{       
    unsigned long long x, y;            
        
    x = 100;      
    y = 0x8000000000000000ULL;
    if (x > y) printf("foo\n");         
    return x > y; 
}       

This also causes the failures in test/src/libs/stdlib/001inttypes.c.
Comment 1 Richard Pennington 2013-10-01 06:34:06 CDT
PR54.c
Comment 2 Richard Pennington 2017-07-24 06:42:49 CDT
Resolved as WONTFIX during bug database cleanup.
Comment 3 Richard Pennington 2017-07-29 10:37:31 CDT
These bugs are obsolete with the new build and deployment process.
Comment 4 Richard Pennington 2017-07-29 10:39:09 CDT
These bugs are obsolete with the new build and deployment process.
Comment 5 Richard Pennington 2017-07-29 10:42:12 CDT
These bugs are obsolete with the new build and deployment process.