diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/warnhist | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/warnhist b/bin/warnhist index 0150138..6146f1e 100755 --- a/bin/warnhist +++ b/bin/warnhist @@ -229,6 +229,9 @@ while (<>) { # Skip variables with the word 'warning' in them next if $_ =~ /_warning_/; + # Skip AMD Optimizing Compiler (aocc) lines "<#> warning(s) generated." + next if $_ =~ / warnings? generated\./; + # "Hide" the C++ '::' symbol until we've parsed out the parts of the line while($_ =~ /\:\:/) { $_ =~ s/\:\:/@@@@/g; |