aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authordnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-28 18:18:19 +0000
committerdnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-28 18:18:19 +0000
commite0e8fb1868c41aece1e5f33fb00445a8afcc2dcc (patch)
tree5e8528141cded5dfe328e29082eea5142b2e0b7a /contrib
parent92d09bd06b83fcd76f8aef3e1a73c2c4ccb0b4ab (diff)
* filter_params.pl: Surround comments in @verbatim/@endverbatim.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/tree-ssa-20020619-branch@61991 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog.tree-ssa4
-rwxr-xr-xcontrib/filter_params.pl3
2 files changed, 6 insertions, 1 deletions
diff --git a/contrib/ChangeLog.tree-ssa b/contrib/ChangeLog.tree-ssa
index a7def222f26..4a905df667d 100644
--- a/contrib/ChangeLog.tree-ssa
+++ b/contrib/ChangeLog.tree-ssa
@@ -1,3 +1,7 @@
+2003-01-28 Diego Novillo <dnovillo@redhat.com>
+
+ * filter_params.pl: Surround comments in @verbatim/@endverbatim.
+
2003-01-19 Diego Novillo <dnovillo@redhat.com>
* tree-ssa.doxy (OUTPUT_DIRECTORY, INPUT_FILTER): Replace
diff --git a/contrib/filter_params.pl b/contrib/filter_params.pl
index 8f32a515706..05861e376fe 100755
--- a/contrib/filter_params.pl
+++ b/contrib/filter_params.pl
@@ -5,7 +5,8 @@
# - PARAMS(()) is used for K&R compatibility. See ansidecl.h.
while (<>) {
- s/^\/\* /\/\*\* /;
+ s/^\/\* /\/\*\* \@verbatim /;
+ s/\*\// \@endverbatim \*\//;
s/GTY[ \t]*\(\(.*\)\)//g;
s/[ \t]ATTRIBUTE_UNUSED//g;
s/PARAMS[ \t]*\(\((.*?)\)\)/\($1\)/sg;