mips16-attributes-3.c
来自「用于进行gcc测试」· C语言 代码 · 共 7 行
C
7 行
/* 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;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?