URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [960801-1.c] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
unsigned f () { long long l2; unsigned short us; unsigned long long ul; short s2; ul = us = l2 = s2 = -1; return ul; } unsigned long long g () { long long l2; unsigned short us; unsigned long long ul; short s2; ul = us = l2 = s2 = -1; return ul; } main () { if (f () != (unsigned short) -1) abort (); if (g () != (unsigned short) -1) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log