1 /* BEGIN INCLUDE FILE ..... lalr_backpointers.incl.pl1 ..... 06/19/76 D. Ward
 2    ^O                                             03/17/82 P. Prange */
 3 /* format: style4,indattr,idind30 */
 4 dcl  backpointer_header_ptr        ptr;
 5 dcl  backpointer_list_ptr          ptr;
 6 dcl  1 backpointer_header          (0:variables_list_size) aligned based (backpointer_header_ptr),
 7        2 first                     fixed bin unaligned,     /* backpointer_list index of first production
 8                                                                named by the variable. */
 9        2 last                      fixed bin unaligned;     /* backpointer_list index of last production
10                                                                named by the variable. */
11 dcl  backpointer_list              (131071) fixed bin based (backpointer_list_ptr); /* P index of a production. */
12 
13 /* END INCLUDE FILE ..... lalr_backpointers.incl.pl1 ..... */