-
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle enumeration subtypes in generic arguments. Issue #618
- Loading branch information
Showing
4 changed files
with
26 additions
and
1 deletion.
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
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,19 @@ | ||
library ieee ; | ||
use ieee.std_logic_1164.all ; | ||
|
||
entity issue618 is | ||
generic ( | ||
A : std_logic := '0' ; | ||
B : std_logic := '1' | ||
) ; | ||
end entity; | ||
|
||
architecture test of issue618 is | ||
begin | ||
p1: process is | ||
begin | ||
assert A = '1'; | ||
assert B = '0'; | ||
wait; | ||
end process; | ||
end architecture; |
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 |
---|---|---|
|
@@ -712,3 +712,4 @@ cover10 cover,shell | |
cmdline5 shell | ||
issue603 normal | ||
issue609 normal | ||
issue618 normal,gA='1',gB='0' |