1/* All calls must be properly stubified.  */
2/* Testcase extracted from TextEdit:Document.m.  */
3
4/* { dg-do compile { target *-*-darwin* } } */
5/* { dg-skip-if "" { *-*-* } { "-fgnu-runtime" } { "" } } */
6/* { dg-require-effective-target ilp32 } */
7/* { dg-options "-mdynamic-no-pic -fdump-rtl-jump -mmacosx-version-min=10.4" } */
8
9typedef struct objc_object { } *id ;
10int x = 41 ;
11extern id objc_msgSend(id self, char * op, ...);
12extern int bogonic (int, int, int) ;
13@interface Document {}
14- (Document *) window;
15- (Document *) class;
16- (Document *) close;
17@end
18@implementation Document
19- (Document *) class { }
20- (Document *) close { }
21- (Document *) window { }
22- (void)willEndCloseSheet:(void *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo {
23  [[self window] close];
24  ((void (*)(id, char *, int))objc_msgSend)([self class], (char *)contextInfo, 1);
25  ((void (*)(id, char *, int))bogonic)([self class], (char *)contextInfo, 1);
26  bogonic (3, 4, 5);
27  x++;
28}
29@end
30
31/* Any symbol_ref of an un-stubified objc_msgSend is an error; look
32   for "objc_msgSend" in quotes, without the $stub suffix. */
33/* { dg-final {  scan-rtl-dump-not "symbol_ref.*\"objc_msgSend\"" "jump" } } */
34