Merge pull request #458 from steveicarus/steveicarus/v11-real-output-port

output ports of type real are variables, not wires.
This commit is contained in:
Stephen Williams 2020-12-29 22:45:10 -08:00 committed by GitHub
commit 859e3e39be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -4623,6 +4623,8 @@ port_declaration
// here.
} else if (dynamic_cast<atom2_type_t*> ($4)) {
use_type = NetNet::IMPLICIT_REG;
} else if (dynamic_cast<real_type_t*> ($4)) {
use_type = NetNet::IMPLICIT_REG;
} else if (dynamic_cast<struct_type_t*> ($4)) {
use_type = NetNet::IMPLICIT_REG;
} else if (dynamic_cast<enum_type_t*> ($4)) {