bd52d17906
too large to list, but see: http://gcc.gnu.org/gcc-3.4/changes.html http://gcc.gnu.org/gcc-4.0/changes.html http://gcc.gnu.org/gcc-4.1/changes.html for the details.
25 lines
512 B
Plaintext
25 lines
512 B
Plaintext
/* 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
|