fix-and-continue-2.mm
来自「用于进行gcc测试」· MM 代码 · 共 25 行
MM
25 行
/* Static variables, even if local, require indirect access through a stub if -mfix-and-continue is enabled. *//* Author: Ziemowit Laski <zlaski@apple.com> */ /* { dg-do assemble { target *-*-darwin* } } *//* { dg-options "-mfix-and-continue" } */#include <objc/Object.h>@interface Foo: Object+ (Object *)indexableFileTypes;@end@implementation Foo+ (Object *)indexableFileTypes{ static Object *fileTypes = 0; if(!fileTypes) { fileTypes = [Object new]; } return fileTypes;}@end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?