Skip to content
Snippets Groups Projects
Commit 93920cad authored by Ezekiel Dohmen's avatar Ezekiel Dohmen
Browse files

Merge branch 'widen_ifo_check' into 'master'

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

See merge request !375
parents 21769cab 54454f69
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 { ...@@ -643,7 +643,7 @@ sub node_processing {
return 1; # Do not call this function on leaves, we already did that return 1; # Do not call this function on leaves, we already did that
} elsif ($block_type eq "Reference") { } elsif ($block_type eq "Reference") {
if ($source_block =~ /cdsIPCx/) { 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"; 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