OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [unsorted/] [miscomp.c] - Rev 853

Go to most recent revision | Compare with Previous | Blame | View Log

unsigned char foo(unsigned long);
main()
{
    unsigned char AChar;
    unsigned long ALong = 0x12345678;
 
    AChar = foo(ALong);
 
    printf("AChar = %x\n",(int)AChar);
}
unsigned char
foo( unsigned long TheLong)
{
     return( (unsigned char) (TheLong & 0xff) );
}
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.