diff options
author | Yves Orton <demerphq@gmail.com> | 2014-09-17 16:14:01 +0200 |
---|---|---|
committer | Yves Orton <demerphq@gmail.com> | 2014-09-17 16:14:11 +0200 |
commit | 8f945cf03946ea4a984c7ecffa2c0fb4839c6f24 (patch) | |
tree | 26494ca35b173a59b5fb222368df86e7b0428858 /regen/regcomp.pl | |
parent | c496ca58b935925a317fd99b29b48db763c1110c (diff) | |
download | perl-8f945cf03946ea4a984c7ecffa2c0fb4839c6f24.tar.gz |
silence diagnostics in regen/regcomp.pl for now
Diffstat (limited to 'regen/regcomp.pl')
-rw-r--r-- | regen/regcomp.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regen/regcomp.pl b/regen/regcomp.pl index 7be623cc6a..b90efc7595 100644 --- a/regen/regcomp.pl +++ b/regen/regcomp.pl @@ -55,8 +55,8 @@ while (<DESC>) { = split /[,\s]\s*/, $desc; if (!defined $seen_op{$type[$ind]} and !defined $type_alias{$type[$ind]}) { - warn "Regop type '$type[$ind]' from regcomp.sym line $. is not an existing regop, and will be aliased to $name[$ind]\n" - if -t STDERR; + #warn "Regop type '$type[$ind]' from regcomp.sym line $. is not an existing regop, and will be aliased to $name[$ind]\n" + # if -t STDERR; $type_alias{$type[$ind]}= $name[$ind]; } |