URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [objc.dg/] [strings/] [const-cfstring-5.m] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test if constant CFStrings may be passed back as ObjC strings. */ /* Author: Ziemowit Laski */ /* So far, CFString is darwin-only. */ /* { dg-do compile { target *-*-darwin* } } */ /* { dg-skip-if "NeXT only" { *-*-* } { "-fgnu-runtime" } { "" } } */ /* { dg-options "-mconstant-cfstrings" } */ #include <objc/Object.h> @interface Foo: Object { char *cString; unsigned int len; } + (Foo *)description; @end @interface Bar: Object + (Foo *) getString: (int) which; @end @implementation Bar + (Foo *) getString: (int) which { return which? [Foo description]: @"Hello"; } @end
Go to most recent revision | Compare with Previous | Blame | View Log