* include/tr1/memory: Add missing "inline" to __throw_bad_weak_ptr.
[official-gcc.git] / contrib / filter_params.pl
blob05861e376fe93aed3ab27a8898202fa2c5b9eea2
1 #!/usr/bin/perl
3 # Filters out some of the #defines used thourghout the GCC sources:
4 # - GTY(()) marks declarations for gengtype.c
5 # - PARAMS(()) is used for K&R compatibility. See ansidecl.h.
7 while (<>) {
8 s/^\/\* /\/\*\* \@verbatim /;
9 s/\*\// \@endverbatim \*\//;
10 s/GTY[ \t]*\(\(.*\)\)//g;
11 s/[ \t]ATTRIBUTE_UNUSED//g;
12 s/PARAMS[ \t]*\(\((.*?)\)\)/\($1\)/sg;
13 print;