blob: 82756199b776c69b901691ca9d6686caacc1281a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
extern void ffi_closure_unix (void);
ffi_prep_closure_loc (void)
{
struct ia64_fd
{
unsigned long long code_pointer;
unsigned long long gp;
};
struct ffi_ia64_trampoline_struct
{
unsigned long long code_pointer;
};
struct ffi_ia64_trampoline_struct *tramp;
struct ia64_fd *fd;
fd = (struct ia64_fd *)(void *)ffi_closure_unix;
tramp->code_pointer = fd->code_pointer;
}
|