Arm: Fix ldrd offset range [PR115153]
[official-gcc.git] / gcc / testsuite / objc.dg / selector-1.m
blob5ff15a2e0a7291e1547dfcca8da249cb7633a369
1 /* Test warning for non existing selectors.  */
2 /* Contributed by Devang Patel <dpatel@apple.com>.  */
3 /* { dg-options "-Wselector" } */
4 /* { dg-do compile } */
5 /* { dg-skip-if "" { *-*-* } { "-fgnu-runtime" } { "" } } */
6 /* { dg-additional-options "-Wno-objc-root-class" } */
8 typedef struct objc_object { struct objc_class *class_pointer; } *id;
9 typedef struct objc_selector    *SEL;
11 @interface Foo
12 - (void) foo;
13 - (void) bar;
14 @end
16 @implementation Foo
17 - (void) bar
21 - (void) foo
23   SEL a,b,c;
24   a = @selector(b1ar); /* { dg-warning "creating selector for nonexistent method .b1ar." } */
25   b = @selector(bar);
27 @end