Fix SWAP_8 and optimize it; print out the failing address if a signal is issued for...
[deliverable/binutils-gdb.git] / gas / .Sanitize
1 # .Sanitize for devo/gas.
2
3 # Each directory to survive its way into a release will need a file
4 # like this one called "./.Sanitize". All keyword lines must exist,
5 # and must exist in the order specified by this file. Each directory
6 # in the tree will be processed, top down, in the following order.
7
8 # Hash started lines like this one are comments and will be deleted
9 # before anything else is done. Blank lines will also be squashed
10 # out.
11
12 # The lines between the "Do-first:" line and the "Things-to-keep:"
13 # line are executed as a /bin/sh shell script before anything else is
14 # done in this directory.
15
16 Do-first:
17
18 # All files listed between the "Things-to-keep:" line and the
19 # "Files-to-sed:" line will be kept. All other files will be removed.
20 # Directories listed in this section will have their own Sanitize
21 # called. Directories not listed will be removed in their entirety
22 # with rm -rf.
23
24 Things-to-keep:
25
26 CONTRIBUTORS
27 COPYING
28 ChangeLog
29 ChangeLog.1
30 Makefile.in
31 NEWS
32 NOTES
33 NOTES.config
34 README
35 README-quirks
36 README-vms
37 README.coff
38 README.rich
39 acconfig.h
40 aclocal.m4
41 app.c
42 as.c
43 as.h
44 atof-generic.c
45 bignum-copy.c
46 bignum.h
47 bit_fix.h
48 cond.c
49 conf.in
50 config
51 config-gas.com
52 configure
53 configure.bat
54 configure.in
55 debug.c
56 doc
57 ecoff.c
58 ecoff.h
59 emul-target.h
60 emul.h
61 expr.c
62 expr.h
63 flonum-copy.c
64 flonum-konst.c
65 flonum-mult.c
66 flonum.h
67 frags.c
68 frags.h
69 gasp.c
70 gdbinit.in
71 hash.c
72 hash.h
73 input-file.c
74 input-file.h
75 input-scrub.c
76 link.cmd
77 listing.c
78 listing.h
79 literal.c
80 mac-as.r
81 macro.c
82 macro.h
83 messages.c
84 mpw-config.in
85 mpw-make.sed
86 obj.h
87 output-file.c
88 output-file.h
89 read.c
90 read.h
91 sb.c
92 sb.h
93 stabs.c
94 struc-symbol.h
95 subsegs.c
96 subsegs.h
97 symbols.c
98 symbols.h
99 tc.h
100 testsuite
101 vmsconf.sh
102 write.c
103 write.h
104 xmalloc.c
105
106 Things-to-lose:
107
108 Do-last:
109
110 i960xl_files="ChangeLog ChangeLog.1"
111 if ( echo $* | grep keep\-i960xl > /dev/null ) ; then
112 if [ -n "${verbose}" ] ; then
113 echo Keeping i960xl stuff in $i960xl_files.
114 fi
115 else
116 if [ -n "${verbose}" ]; then
117 echo -n Cleaning i960xl in `pwd`:
118 fi
119 for f in $i960xl_files ; do
120 if [ -n "${verbose}" ] ; then
121 echo -n " " $f
122 fi
123 sed '/start\-sanitize\-i960xl/,/end\-sanitize\-i960xl/d' < $f > new
124 if [ -n "${safe}" ] ; then
125 mv $f .Recover
126 fi
127 mv new $f
128 done
129 if [ -n "${verbose}" ]; then
130 echo ""
131 fi
132 fi
133
134 sh3e_files="ChangeLog ChangeLog.1"
135 if ( echo $* | grep keep\-sh3e > /dev/null ) ; then
136 if [ -n "${verbose}" ] ; then
137 echo Keeping sh3e stuff in $sh3e_files.
138 fi
139 else
140 if [ -n "${verbose}" ]; then
141 echo -n Cleaning sh3e in `pwd`:
142 fi
143 for f in $sh3e_files ; do
144 if [ -n "${verbose}" ] ; then
145 echo -n " " $f
146 fi
147 sed -e '/start\-sanitize\-sh3e/,/end\-sanitize\-sh3e/d' -e '/ xl /d' < $f > new
148 if [ -n "${safe}" ] ; then
149 mv $f .Recover
150 fi
151 mv new $f
152 done
153 if [ -n "${verbose}" ]; then
154 echo ""
155 fi
156 fi
157
158 rce_files="configure.in as.c configure ChangeLog Makefile.in ChangeLog.1"
159
160 if ( echo $* | grep keep\-rce > /dev/null ) ; then
161 for i in $rce_files ; do
162 if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
163 if [ -n "${verbose}" ] ; then
164 echo Keeping rce stuff in $i
165 fi
166 fi
167 done
168 else
169 for i in $rce_files ; do
170 if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
171 if [ -n "${verbose}" ] ; then
172 echo Removing traces of \"rce\" from $i...
173 fi
174 cp $i new
175 sed '/start\-sanitize\-rce/,/end-\sanitize\-rce/d' < $i > new
176 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
177 if [ -n "${verbose}" ] ; then
178 echo Caching $i in .Recover...
179 fi
180 mv $i .Recover
181 fi
182 mv new $i
183 fi
184 done
185 fi
186
187 arc_files="ChangeLog configure.in configure Makefile.in ChangeLog.1"
188 if ( echo $* | grep keep\-arc > /dev/null ) ; then
189 for i in $arc_files ; do
190 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
191 if [ -n "${verbose}" ] ; then
192 echo Keeping arc stuff in $i
193 fi
194 fi
195 done
196 else
197 for i in $arc_files ; do
198 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
199 if [ -n "${verbose}" ] ; then
200 echo Removing traces of \"arc\" from $i...
201 fi
202 cp $i new
203 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
204 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
205 if [ -n "${verbose}" ] ; then
206 echo Caching $i in .Recover...
207 fi
208 mv $i .Recover
209 fi
210 mv new $i
211 fi
212 done
213 fi
214
215 for i in * ; do
216 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
217 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
218 fi
219 done
220
221 #
222 # End of file.
This page took 0.054694 seconds and 4 git commands to generate.