Skip to content
Snippets Groups Projects
Commit 54454f69 authored by Erik von Reis's avatar Erik von Reis
Browse files

RCG: Widen IFO check in parser3 to allow any capital letter.

parent 21769cab
No related branches found
No related tags found
3 merge requests!439RCG 5.0 release fro deb 10,!387Merge master branch into debian packaging branch,!375RCG: Widen IFO check in parser3 to allow any capital letter.
......@@ -643,7 +643,7 @@ sub node_processing {
return 1; # Do not call this function on leaves, we already did that
} elsif ($block_type eq "Reference") {
if ($source_block =~ /cdsIPCx/) {
if ($block_name !~ /[CGHKLMSX]\d\:/) {
if ($block_name !~ /[A-Z]\d\:/) {
die "***ERROR: Signal name of IPCx module must include IFO: $block_name\n";
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment