]> gcc.gnu.org Git - gcc.git/blame - gcc/testsuite/gcc.c-torture/compile/20010320-1.c
GCC port for eBPF
[gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20010320-1.c
CommitLineData
a44a935f
PB
1typedef struct sec {
2const char *name;
3int id;
4int index;
5struct sec *next;
6unsigned int flags;
7unsigned int user_set_vma : 1;
8unsigned int reloc_done : 1;
9unsigned int linker_mark : 1;
10unsigned int gc_mark : 1;
11unsigned int segment_mark : 1;
12unsigned long long vma; } asection;
13
14static void pe_print_pdata (asection *section)
15{
16 unsigned long long i;
17 unsigned long long start = 0, stop = 0;
18 int onaline = (3*8) ;
19
20 for (i = start; i < stop; i += onaline)
21 {
22 if (i + (3*8) > stop)
23 break;
24
25 f (((unsigned long) ((( i + section->vma ) >> 32) & 0xffffffff)) , ((unsigned long) ((( i + section->vma ) & 0xffffffff))) ) ;
26 }
27}
28
This page took 9.186205 seconds and 5 git commands to generate.