minix/external/bsd/byacc/dist/test/btyacc/err_syntax20.output
Lionel Sambuc 0a6a1f1d05 NetBSD re-synchronization of the source tree
This brings our tree to NetBSD 7.0, as found on -current on the
10-10-2015.

This updates:
 - LLVM to 3.6.1
 - GCC to GCC 5.1
 - Replace minix/commands/zdump with usr.bin/zdump
 - external/bsd/libelf has moved to /external/bsd/elftoolchain/
 - Import ctwm
 - Drop sprintf from libminc

Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
2016-01-13 20:32:14 +01:00

52 lines
613 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

0 $accept : expr $end
1 expr : '(' recur ')'
state 0
$accept : . expr $end (0)
'(' shift 1
. error
expr goto 2
state 1
expr : '(' . recur ')' (1)
recur shift 3
. error
state 2
$accept : expr . $end (0)
$end accept
state 3
expr : '(' recur . ')' (1)
')' shift 4
. error
state 4
expr : '(' recur ')' . (1)
. reduce 1
5 terminals, 2 nonterminals
2 grammar rules, 5 states
grammar parser grammar
symbol# value# symbol
0 0 $end
1 256 error
2 257 recur
3 40 '('
4 41 ')'
5 258 $accept
6 259 expr