You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to implement a rule that disallows unpacked array declarations.
Unpacked arrays are not guaranteed to be represented as contiguous memory, and can cause issues with synthesis tools especially with how multidimensional arrays are synthesized.
I'm not sure which RefNode captures this, I looked into RefNode::VariableDeclAssignment but I'm not sure how to unwrap it to get the information I need. Any hints or ideas would be helpful. Thanks.
The text was updated successfully, but these errors were encountered:
I'd like to implement a rule that disallows unpacked array declarations.
Unpacked arrays are not guaranteed to be represented as contiguous memory, and can cause issues with synthesis tools especially with how multidimensional arrays are synthesized.
I'm not sure which
RefNode
captures this, I looked into RefNode::VariableDeclAssignment but I'm not sure how to unwrap it to get the information I need. Any hints or ideas would be helpful. Thanks.The text was updated successfully, but these errors were encountered: