summaryrefslogtreecommitdiff
path: root/regen/regcomp.pl
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2014-09-17 16:14:01 +0200
committerYves Orton <demerphq@gmail.com>2014-09-17 16:14:11 +0200
commit8f945cf03946ea4a984c7ecffa2c0fb4839c6f24 (patch)
tree26494ca35b173a59b5fb222368df86e7b0428858 /regen/regcomp.pl
parentc496ca58b935925a317fd99b29b48db763c1110c (diff)
downloadperl-8f945cf03946ea4a984c7ecffa2c0fb4839c6f24.tar.gz
silence diagnostics in regen/regcomp.pl for now
Diffstat (limited to 'regen/regcomp.pl')
-rw-r--r--regen/regcomp.pl4
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];
}