Commit 1f43e92e by Kaveh R. Ghazi Committed by Kaveh Ghazi

warn_summary: Add -fortran subdir flag.

	* warn_summary: Add -fortran subdir flag.
	(subdirectoryFilter): Fix missing ada subdir.

From-SVN: r96022
parent 8c80c4aa
2005-03-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* warn_summary: Add -fortran subdir flag.
(subdirectoryFilter): Fix missing ada subdir.
2004-11-20 Hans-Peter Nilsson <hp@bitrange.com> 2004-11-20 Hans-Peter Nilsson <hp@bitrange.com>
* gcc_update (touch_files): Don't rely on "make" being GNU make; * gcc_update (touch_files): Don't rely on "make" being GNU make;
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
# This script parses the output of a gcc bootstrap when using warning # This script parses the output of a gcc bootstrap when using warning
# flags and determines various statistics. # flags and determines various statistics.
# #
# usage: warn_summary [-llf] [-s stage] [-nosub|-ch|-cp|-f|-java|-ada|-intl|-fixinc] # usage: warn_summary [-llf] [-s stage] [-nosub|-ch|-cp|-f|-fortran|-java|-ada|-intl|-fixinc]
# [-pass|-wpass] [file(s)] # [-pass|-wpass] [file(s)]
# #
# -llf # -llf
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
# #
# -nosub # -nosub
# Only show warnings from the gcc top level directory. # Only show warnings from the gcc top level directory.
# -ch|-cp|-f|-java|-ada|-intl|-fixinc # -ch|-cp|-f|-fortran|-java|-ada|-intl|-fixinc
# Only show warnings from the specified language subdirectory. # Only show warnings from the specified gcc subdirectory.
# These override each other so only the last one passed takes effect. # These override each other so only the last one passed takes effect.
# #
# -pass # -pass
...@@ -57,7 +57,7 @@ subdirectoryFilter() ...@@ -57,7 +57,7 @@ subdirectoryFilter()
else else
if test "$filter" = nosub ; then if test "$filter" = nosub ; then
# Omit all subdirectories. # Omit all subdirectories.
egrep -v '/gcc/(ch|cp|f|java|intl|fixinc)/' egrep -v '/gcc/(ch|cp|f|fortran|java|ada|intl|fixinc)/'
else else
# Pass through only subdir $filter. # Pass through only subdir $filter.
grep "/gcc/$filter/" grep "/gcc/$filter/"
...@@ -132,7 +132,7 @@ s%^[^ ]*/\(lib[a-z23+-]*/\)%\1%;' ...@@ -132,7 +132,7 @@ s%^[^ ]*/\(lib[a-z23+-]*/\)%\1%;'
# Start the main section. # Start the main section.
usage="usage: `basename $0` [-llf] [-s stage] [-nosub|-ch|-cp|-f|-java|-ada|-intl|-fixinc] [-pass|-wpass] [file(s)]" usage="usage: `basename $0` [-llf] [-s stage] [-nosub|-ch|-cp|-f|-fortran|-java|-ada|-intl|-fixinc] [-pass|-wpass] [file(s)]"
stageN=3 stageN=3
tmpfile=/tmp/tmp-warn.$$ tmpfile=/tmp/tmp-warn.$$
...@@ -158,7 +158,7 @@ while test -n "$1" ; do ...@@ -158,7 +158,7 @@ while test -n "$1" ; do
-s) if test -z "$2"; then echo $usage 1>&2; exit 1; fi -s) if test -z "$2"; then echo $usage 1>&2; exit 1; fi
stageN="$2"; shift 2 ;; stageN="$2"; shift 2 ;;
-s*) stageN="`expr $1 : '-s\(.*\)'`" ; shift ;; -s*) stageN="`expr $1 : '-s\(.*\)'`" ; shift ;;
-nosub|-ch|-cp|-f|-java|-ada|-intl|-fixinc) filter="`expr $1 : '-\(.*\)'`" ; shift ;; -nosub|-ch|-cp|-f|-fortran|-java|-ada|-intl|-fixinc) filter="`expr $1 : '-\(.*\)'`" ; shift ;;
-pass) pass=1 ; shift ;; -pass) pass=1 ; shift ;;
-wpass) pass=w ; shift ;; -wpass) pass=w ; shift ;;
-*) echo $usage 1>&2 ; exit 1 ;; -*) echo $usage 1>&2 ; exit 1 ;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment