]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.bin/yacc/yyfix.sh
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / usr.bin / yacc / yyfix.sh
1 #!/bin/sh -
2 #
3 # Copyright (c) 1990 The Regents of the University of California.
4 # All rights reserved.
5 #
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
9 # 1. Redistributions of source code must retain the above copyright
10 #    notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 #    notice, this list of conditions and the following disclaimer in the
13 #    documentation and/or other materials provided with the distribution.
14 # 4. Neither the name of the University nor the names of its contributors
15 #    may be used to endorse or promote products derived from this software
16 #    without specific prior written permission.
17 #
18 # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 # ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 # SUCH DAMAGE.
29 #
30 # $FreeBSD$
31 #
32 #       @(#)yyfix.sh    5.2 (Berkeley) 5/12/90
33 #
34 OLDYACC="yyexca yyact yypact yypgo yyr1 yyr2 yychk yydef"
35 NEWYACC="yylhs yylen yydefred yydgoto yysindex yyrindex yygindex \
36          yytable yycheck"
37
38 if [ $# -eq 0 ]; then
39         echo "usage: $0 file [tables]" >&2
40         exit 1
41 fi
42
43 file=$1
44 >$file
45 shift
46
47 if [ $# -eq 0 ] ; then
48         if grep yylhs y.tab.c > /dev/null ; then
49                 if grep yyname y.tab.c > /dev/null ; then
50                         NEWYACC="$NEWYACC yyname"
51                 fi
52                 if grep yyrule y.tab.c > /dev/null ; then
53                         NEWYACC="$NEWYACC yyrule"
54                 fi
55                 set $NEWYACC
56         else
57                 set $OLDYACC
58         fi
59 fi
60
61 for i
62 do
63 ed - y.tab.c << END
64 /^\(.*\)$i[     ]*\[]/s//extern \1 $i[];\\
65 \1 $i []/
66 .ka
67 /}/kb
68 'br $file
69 'a,.w $file
70 'a,.d
71 w
72 q
73 END
74 done