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.
40 lines
756 B
Plaintext
40 lines
756 B
Plaintext
/* Test for assigning compile-time constant-string objects to static variables. */
|
|
/* Contributed by Ziemowit Laski <zlaski@apple.com> */
|
|
|
|
/* { dg-options "-fnext-runtime -fconstant-string-class=Foo -lobjc" } */
|
|
/* { dg-do run { target *-*-darwin* } } */
|
|
|
|
|
|
#include <stdlib.h>
|
|
#include <objc/Object.h>
|
|
|
|
@interface Foo: Object {
|
|
char *cString;
|
|
unsigned int len;
|
|
}
|
|
@end
|
|
|
|
struct objc_class _FooClassReference;
|
|
|
|
@implementation Foo : Object
|
|
- (char *)customString {
|
|
return cString;
|
|
}
|
|
@end
|
|
|
|
static const Foo *appKey = @"MyApp";
|
|
static int CFPreferencesSynchronize (const Foo *ref) {
|
|
return ref == appKey;
|
|
}
|
|
|
|
static void PrefsSynchronize(void)
|
|
{
|
|
if(!CFPreferencesSynchronize(appKey))
|
|
abort();
|
|
}
|
|
|
|
int main () {
|
|
PrefsSynchronize();
|
|
return 0;
|
|
}
|