ref: 9bf16fdaec39d2cde807c8408532f9535e29652e
parent: 91f062f5101b968503bf034bf720cc7e7c7a2dc3
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Tue Nov 24 08:24:20 EST 2015
Simplify cc1/tests/update.sh The function is not needed because it is called only from one place.
--- a/cc1/tests/update.sh
+++ b/cc1/tests/update.sh
@@ -1,12 +1,5 @@
#!/bin/sh
-update()
-{
- (echo '/^output/+;/^\*\//-c'
- ../cc1 -I./ -w $1 2>&1
- printf ".\nw\n") | ed -s $1
-}
-
case $# in
0)
echo "usage: update.sh test ..." >&2
@@ -15,7 +8,9 @@
*)
for i
do
- update $i
+ (echo '/^output/+;/^\*\//-c'
+ ../cc1 -I./ -w $1 2>&1
+ printf ".\nw\n") | ed -s $1
done
;;
esac