-
-
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.
Error rather than crash on incremental binding. Issue xxx
- Loading branch information
Showing
3 changed files
with
66 additions
and
10 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,28 @@ | ||
entity ent is | ||
generic (A: integer := 0); | ||
end entity ent; | ||
|
||
-------------------------------------------------------------------------------- | ||
|
||
entity top is | ||
end entity top; | ||
|
||
architecture arch of top is | ||
component ent is | ||
generic (A: integer := 1); | ||
end component ent; | ||
for inst : ent use entity work.ent generic map (A => 2); | ||
begin | ||
inst : component ent generic map (A => 3); | ||
end architecture arch; | ||
|
||
-------------------------------------------------------------------------------- | ||
|
||
configuration conf of top is | ||
for arch | ||
for others : ent -- OK (not yet supported) | ||
generic map (A => 4); | ||
end for; | ||
end for; | ||
end configuration conf; | ||
|
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