- /* this symbol and its alias are a single token defn.
- allocate a tokno, and assign to both
- check agreement of ->prec and ->assoc fields
- and make both the same
- */
- if (bp->value == 0)
- bp->value = bp->alias->value = tokno++;
-
- if (bp->prec != bp->alias->prec) {
- if (bp->prec != 0 && bp->alias->prec != 0
- && bp->user_token_number == SALIAS)
- warnss(_("conflicting precedences for %s and %s"),
- bp->tag, bp->alias->tag);
- if (bp->prec != 0) bp->alias->prec = bp->prec;
- else bp->prec = bp->alias->prec;
- }
+ /* this symbol and its alias are a single token defn.
+ allocate a tokno, and assign to both check agreement of
+ ->prec and ->assoc fields and make both the same */
+ if (bp->value == 0)
+ bp->value = bp->alias->value = tokno++;