fix-and-continue-2.m

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· M 代码 · 共 26 行

M
26
字号
/* APPLE LOCAL file mainline *//* 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 + -
显示快捷键?