URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [unsorted/] [miscomp.c] - Rev 399
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