URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [objc.dg/] [strings/] [const-str-1.m] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test errors for constant strings. */ /* { dg-do compile } */ /* { dg-options "-mno-constant-cfstrings" { target *-*-darwin* } } */ #ifdef __cplusplus extern void baz(...); #endif void foo() { baz(@"hiya"); /* { dg-error "annot find interface declaration" } */ } @interface NXConstantString { void *isa; char *str; int len; } @end void bar() { baz(@"howdah"); }
Go to most recent revision | Compare with Previous | Blame | View Log