tree-inline: Add __builtin_stack_{save,restore} pair about inline calls with calls...
[official-gcc.git] / contrib / filter_gcc_for_doxygen
blobd3670604b0170610195d9e70952eb73fb9e001bb
1 #!/bin/sh
3 # This filters GCC source before Doxygen can get confused by it;
4 # this script is listed in the doxyfile. The output is not very
5 # pretty, but at least we get output that Doxygen can understand.
7 # $1 is a source file of some kind. The source we wish doxygen to
8 # process is put on stdout.
10 dir=`dirname $0`
11 env python3 $dir/filter_params.py $1
12 exit 0