blob: cfffe976d1f557765b02729c559b5c3ea55f51fc [file] [log] [blame]
/* 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" } */
/* APPLE LOCAL radar 4894756 */
#include "../objc/execute/Object2.h"
@interface Foo: Object
+ (Object *)indexableFileTypes;
@end
@implementation Foo
+ (Object *)indexableFileTypes
{
static Object *fileTypes = 0;
if(!fileTypes) {
fileTypes = [Object new];
}
return fileTypes;
}
@end