blob: 3b4e10777a42ebc7e2652f8a76696022d6ccb18f [file] [log] [blame]
/* 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;