URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [objc.dg/] [gnu-runtime-2.m] - Rev 313
Go to most recent revision | Compare with Previous | Blame | View Log
/* Sanity check for GNU-runtime version of constant strings, regardless of runtime used on target system. */ /* { dg-do compile } */ /* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */ #include <objc/Object.h> #include <string.h> #include <stdlib.h> @interface NXConstantString: Object { char *c_string; unsigned int len; } -(const char *) cString; -(unsigned int) length; @end @implementation NXConstantString -(const char *) cString { return c_string; } -(unsigned int) length { return len; } @end int main(int argc, void **args) { if (strcmp ([@"this is a string" cString], "this is a string")) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log