2007-03-01 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / gcc / testsuite / objc.dg / fix-and-continue-2.m
blob33cb8467dcd7dcd6abdf12a207d2cdb507ce2ff4
1 /* Static variables, even if local, require indirect access through a stub
2    if -mfix-and-continue is enabled.  */
4 /* Author: Ziemowit Laski <zlaski@apple.com> */
5    
6 /* { dg-do assemble { target *-*-darwin* } } */
7 /* { dg-options "-mfix-and-continue" } */
9 #include <objc/Object.h>
11 @interface Foo: Object
12 + (Object *)indexableFileTypes;
13 @end
15 @implementation Foo
16 + (Object *)indexableFileTypes
18   static Object *fileTypes = 0;
19   if(!fileTypes) {
20     fileTypes = [Object new];
21   }
22   return fileTypes;
24 @end