aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorManfred Hollstein <manfred@gcc.gnu.org>1998-06-01 00:26:36 +0000
committerManfred Hollstein <manfred@gcc.gnu.org>1998-06-01 00:26:36 +0000
commitc903011605021fd0d4b69170b37a2f41ad66b38c (patch)
treedfc29d24b3f6c183db9e44919a1253bfa1c2fbf4 /contrib
parent91af92df6e82440368949cc14cbda10ef9904dd6 (diff)
downloadgcc-c903011605021fd0d4b69170b37a2f41ad66b38c.zip
gcc-c903011605021fd0d4b69170b37a2f41ad66b38c.tar.gz
gcc-c903011605021fd0d4b69170b37a2f41ad66b38c.tar.bz2
warn_summary: Update to Kaveh's latest version allowing to specify the last stage built.
* warn_summary: Update to Kaveh's latest version allowing to specify the last stage built. From-SVN: r20161
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/warn_summary29
1 files changed, 22 insertions, 7 deletions
diff --git a/contrib/warn_summary b/contrib/warn_summary
index 1fb62b0..c160787 100755
--- a/contrib/warn_summary
+++ b/contrib/warn_summary
@@ -4,14 +4,18 @@
#
# By Kaveh Ghazi (ghazi@caip.rutgers.edu) 12/13/97.
-# This function displays all warnings from stage3 of the bootstrap.
-stage3warns()
+# This function displays all warnings from stageN of the bootstrap.
+stageNwarns()
{
+ stageNminus1=`expr $stageN - 1`
# Some awks choke on long lines so grep them out.
grep -v libf2c.a $1 | \
- $AWK '/ warning: /{if(t==1)print} ; /stage2/{if(t==0)t=1}'
+ $AWK "/ warning: /{if(t==1)print} ; /stage$stageNminus1/{if(t==0)t=1} ; /stage$stageN/{if(t==1)t=0}"
}
+usage="usage: `basename $0` [-s stage] [file(s)]"
+stageN=3
+
# Find a good awk.
if test -z "$AWK" ; then
for AWK in gawk nawk awk ; do
@@ -23,18 +27,29 @@ if test -z "$AWK" ; then
done
fi
+while test -n "$1" ; do
+ case "$1" in
+ -s) if test -z "$2"; then echo $usage; exit 1; fi; stageN="$2"; shift 2 ;;
+ -s*) stageN="`expr $1 : '-s\(.*\)'`" ; shift ;;
+ -*) echo $usage ; exit 1 ;;
+ *) break ;;
+ esac
+done
+
+
+
for file in "$@" ; do
- count=`stage3warns $file | wc -l`
- echo There are $count warnings in stage3 of this bootstrap.
+ count=`stageNwarns $file | wc -l`
+ echo There are $count warnings in stage$stageN of this bootstrap.
echo
echo Number of warnings per file:
- stage3warns $file | $AWK -F: '{print$1}' | sort | uniq -c | sort -nr
+ stageNwarns $file | $AWK -F: '{print$1}' | sort | uniq -c | sort -nr
echo
echo Number of warning types:
- stage3warns $file | sed 's/.*warning: //;
+ stageNwarns $file | sed 's/.*warning: //;
s/`\(int\)'"'"'/"\1"/g;
s/`\(char\)'"'"'/"\1"/g;
s/`\(inline\)'"'"'/"\1"/g;