Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.target / i386 / tailcall-1.c
blob0e8c2f3c58a05f035656f5eb0f47b25d1f8fcd01
1 /* { dg-do compile } */
2 /* { dg-skip-if "" { { i?86-*-* x86_64-*-* } && ilp32 } { "-fpic" "-fPIC" } { "" } } */
3 /* { dg-options "-O2" } */
5 typedef unsigned int Cardinal;
6 typedef char *String;
7 typedef struct _WidgetRec *Widget;
9 typedef union _XEvent {
10 int type;
11 long pad[24];
12 } XEvent;
15 extern int SendMousePosition (Widget w, XEvent* event);
18 void
19 HandleIgnore(Widget w,
20 XEvent * event,
21 String * params ,
22 Cardinal *param_count )
25 (void) SendMousePosition(w, event);
28 /* { dg-final { scan-assembler "jmp" } } */