PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / tailcall-1.c
blob9aae9d45ed4dbdd725003f6ad287df76996a18cf
1 /* { dg-do compile } */
2 /* { dg-require-effective-target ia32 } */
3 /* { dg-require-effective-target nonpic } */
4 /* { dg-options "-O2" } */
6 typedef unsigned int Cardinal;
7 typedef char *String;
8 typedef struct _WidgetRec *Widget;
10 typedef union _XEvent {
11 int type;
12 long pad[24];
13 } XEvent;
16 extern int SendMousePosition (Widget w, XEvent* event);
19 void
20 HandleIgnore(Widget w,
21 XEvent * event,
22 String * params ,
23 Cardinal *param_count )
26 (void) SendMousePosition(w, event);
29 /* { dg-final { scan-assembler "jmp" } } */