aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/contrib/filter_params.pl
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.4.3/contrib/filter_params.pl')
-rwxr-xr-xgcc-4.4.3/contrib/filter_params.pl14
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc-4.4.3/contrib/filter_params.pl b/gcc-4.4.3/contrib/filter_params.pl
deleted file mode 100755
index 22dae6cc5..000000000
--- a/gcc-4.4.3/contrib/filter_params.pl
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/perl
-
-# Filters out some of the #defines used throughout the GCC sources:
-# - GTY(()) marks declarations for gengtype.c
-# - PARAMS(()) is used for K&R compatibility. See ansidecl.h.
-
-while (<>) {
- s/^\/\* /\/\*\* \@verbatim /;
- s/\*\// \@endverbatim \*\//;
- s/GTY[ \t]*\(\(.*\)\)//g;
- s/[ \t]ATTRIBUTE_UNUSED//g;
- s/PARAMS[ \t]*\(\((.*?)\)\)/\($1\)/sg;
- print;
-}