* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20040121-1.c
blob2039472fd4ebdd65420a767773eef3bb60786488
1 /* PR target/12898
2 0x8000 needs multiple instructions to be emitted on Alpha; the
3 fluff around it causes it to be emitted in a no_new_pseudos
4 context, which triggered a problem in alpha.c. */
6 void f (const char *, ...);
7 int g (void);
8 void *p (void);
10 int isymBase, ilineBase, sym_hdr, want_line, proc_desc;
11 char *lines;
13 void print_file_desc (int *fdp)
15 char *str_base = p ();
16 int symi, pdi = g ();
18 for (symi = 0; isymBase;)
20 int proc_ptr = proc_desc + pdi;
21 f("1", isymBase, proc_ptr + *fdp, str_base);
22 if (want_line && *fdp)
24 int delta;
25 long cur_line = proc_ptr;
26 char *line_ptr = lines + proc_ptr;
27 char *line_end = p ();
29 f("2", sym_hdr);
30 while (line_ptr < line_end)
32 delta = *line_ptr;
33 if (delta)
34 line_ptr++;
35 else
36 delta = line_ptr[1] ^ 0x8000;
37 f("3", cur_line, delta);