-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix crash with missing choices in aggregate. (#1104)
- Loading branch information
Showing
3 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package pkg is | ||
type vec is array(0 to 3) of integer; | ||
end pkg; | ||
|
||
use work.pkg.all; | ||
|
||
entity ent is | ||
port ( | ||
p0 : boolean := vec'(0=>0, 1=>0) = vec'(3=>0); | ||
p1 : boolean := vec'(0=>0, 1=>1, 1 to 2=>1) = vec'(others=>0); | ||
p2 : boolean := vec'(0=>0, 1=>1, 2 to 3=>1) = vec'(others=>0) | ||
); | ||
end ent; | ||
|
||
architecture arch of ent is | ||
begin | ||
end architecture arch; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters