OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [contrib/] [filter_params.pl] - Blame information for rev 723

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 723 jeremybenn
#!/usr/bin/perl
2
 
3
# Filters out some of the #defines used throughout the GCC sources:
4
# - GTY(()) marks declarations for gengtype.c
5
# - PARAMS(()) is used for K&R compatibility. See ansidecl.h.
6
 
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;
14
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.