annotate gcc/testsuite/gcc.c-torture/compile/pr36141.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 extern void ffi_closure_unix (void);
kono
parents:
diff changeset
2 ffi_prep_closure_loc (void)
kono
parents:
diff changeset
3 {
kono
parents:
diff changeset
4 struct ia64_fd
kono
parents:
diff changeset
5 {
kono
parents:
diff changeset
6 unsigned long long code_pointer;
kono
parents:
diff changeset
7 unsigned long long gp;
kono
parents:
diff changeset
8 };
kono
parents:
diff changeset
9 struct ffi_ia64_trampoline_struct
kono
parents:
diff changeset
10 {
kono
parents:
diff changeset
11 unsigned long long code_pointer;
kono
parents:
diff changeset
12 };
kono
parents:
diff changeset
13 struct ffi_ia64_trampoline_struct *tramp;
kono
parents:
diff changeset
14 struct ia64_fd *fd;
kono
parents:
diff changeset
15 fd = (struct ia64_fd *)(void *)ffi_closure_unix;
kono
parents:
diff changeset
16 tramp->code_pointer = fd->code_pointer;
kono
parents:
diff changeset
17 }