URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [pr28289.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
extern int ok (int); extern void exit (); static int gen_x86_64_shrd (int); static int gen_x86_64_shrd(int a __attribute__ ((__unused__))) { return 0; } extern int gen_x86_shrd_1 (int); extern void ix86_split_ashr (int); void ix86_split_ashr (int mode) { (mode != 0 ? ok : gen_x86_64_shrd) (0); } volatile int one = 1; int main (void) { ix86_split_ashr (one); return 1; } int ok (int i) { exit (i); }
Go to most recent revision | Compare with Previous | Blame | View Log