Home | History | Annotate | Download | only in src

Lines Matching refs:Rhs

37 #define YYLLOC_DEFAULT(Current, Rhs, N)  (Current) = lloc_default (Rhs, N)
419 rhs { grammar_current_rule_end (@1); }
420 | rhses.1 "|" rhs { grammar_current_rule_end (@3); }
424 rhs:
427 | rhs symbol
429 | rhs action
430 | rhs "%prec" symbol
432 | rhs "%dprec" INT
434 | rhs "%merge" TYPE
489 right-hand side is RHS[1] ... RHS[N]. Ignore empty nonterminals in
491 boundary of RHS[0] if the right-hand side is empty. */
494 lloc_default (YYLTYPE const *rhs, int n)
499 /* SGI MIPSpro 7.4.1m miscompiles "loc.start = loc.end = rhs[n].end;".
501 loc.start = rhs[n].end;
502 loc.end = rhs[n].end;
508 if (! equal_boundaries (rhs[i].start, rhs[i].end))
510 loc.start = rhs[i].start;