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.target/] [mips/] [mips16-attributes-3.c] - Rev 324
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-options "(-mips16)" } */ /* We should be able to assign mips16 and nomips16 functions to a pointer. */ void __attribute__((mips16)) f1 (void); void (*ptr1) (void) = f1; void __attribute__((nomips16)) f2 (void); void (*ptr2) (void) = f2;
Go to most recent revision | Compare with Previous | Blame | View Log