aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authordnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-18 15:57:30 +0000
committerdnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-18 15:57:30 +0000
commit0a0322fa97379e9d0f8cb3e613d6224866b9404b (patch)
tree7a529c4c0f8c317c30655bbbf6860ce07696e180 /contrib
parent7dfef11be32cb007bb2c804b10dd9002bc1753f6 (diff)
* filter_params.pl: Change most comments to start with /**.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/tree-ssa-20020619-branch@61475 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog.tree-ssa4
-rwxr-xr-xcontrib/filter_params.pl13
-rw-r--r--contrib/tree-ssa.doxy2
3 files changed, 12 insertions, 7 deletions
diff --git a/contrib/ChangeLog.tree-ssa b/contrib/ChangeLog.tree-ssa
index 28482648184..d7b14732e6f 100644
--- a/contrib/ChangeLog.tree-ssa
+++ b/contrib/ChangeLog.tree-ssa
@@ -1,3 +1,7 @@
+2003-01-18 Diego Novillo <dnovillo@redhat.com>
+
+ * filter_params.pl: Change most comments to start with /**.
+
2002-12-23 Steven Bosscher <Steven.Bosscher@usafa.af.mil>
* filter_params.pl: Filter ATTRIBUTE_UNUSED.
diff --git a/contrib/filter_params.pl b/contrib/filter_params.pl
index f0b45eb0b4a..8f32a515706 100755
--- a/contrib/filter_params.pl
+++ b/contrib/filter_params.pl
@@ -4,9 +4,10 @@
# - GTY(()) marks declarations for gengtype.c
# - PARAMS(()) is used for K&R compatibility. See ansidecl.h.
-undef $/;
-$a = <>;
-$a =~ s/GTY[ \t]*\(\(.*\)\)//g;
-$a =~ s/[ \t]ATTRIBUTE_UNUSED//g;
-$a =~ s/PARAMS[ \t]*\(\((.*?)\)\);/\($1\);/sg;
-print $a;
+while (<>) {
+ s/^\/\* /\/\*\* /;
+ s/GTY[ \t]*\(\(.*\)\)//g;
+ s/[ \t]ATTRIBUTE_UNUSED//g;
+ s/PARAMS[ \t]*\(\((.*?)\)\)/\($1\)/sg;
+ print;
+}
diff --git a/contrib/tree-ssa.doxy b/contrib/tree-ssa.doxy
index 2dc7920c11a..8cf6373e3d4 100644
--- a/contrib/tree-ssa.doxy
+++ b/contrib/tree-ssa.doxy
@@ -20,7 +20,7 @@
# If a relative path is entered, it will be relative to the location
# where doxygen was started. If left blank the current directory will be used.
-OUTPUT_DIRECTORY = /home/dnovillo/public_html/tree-ssa-doc
+OUTPUT_DIRECTORY = /home/dnovillo/public_html/pub/tree-ssa-doc
# The INPUT_FILTER tag can be used to specify a program that doxygen should
# invoke to filter for each input file. Doxygen will invoke the filter program