summaryrefslogtreecommitdiff
path: root/testsuite/gna/bug16/repro1.vhdl
diff options
context:
space:
mode:
authorTristan Gingold2015-08-29 08:01:46 +0200
committerTristan Gingold2015-08-29 08:01:46 +0200
commitb461845ffeb94e902d84c058238fcfcd4074f1a6 (patch)
tree5a2bcc7733b32a649cfe8661f872f50051179657 /testsuite/gna/bug16/repro1.vhdl
parentb75d703676ab830ea3e5731e1965d1d89879a456 (diff)
downloadghdl-b461845ffeb94e902d84c058238fcfcd4074f1a6.tar.gz
ghdl-b461845ffeb94e902d84c058238fcfcd4074f1a6.tar.bz2
ghdl-b461845ffeb94e902d84c058238fcfcd4074f1a6.zip
Rename gnat/bug directories for non-gna bugs to avoid confusion.
Diffstat (limited to 'testsuite/gna/bug16/repro1.vhdl')
-rw-r--r--testsuite/gna/bug16/repro1.vhdl28
1 files changed, 0 insertions, 28 deletions
diff --git a/testsuite/gna/bug16/repro1.vhdl b/testsuite/gna/bug16/repro1.vhdl
deleted file mode 100644
index 6553079..0000000
--- a/testsuite/gna/bug16/repro1.vhdl
+++ /dev/null
@@ -1,28 +0,0 @@
-entity repro is
-end repro;
-
-entity comp is
- port (s : bit);
-end comp;
-
-architecture behav of repro is
- component comp is
- port (s : bit);
- end component;
- signal s : bit;
-begin
- c : comp port map (s);
-end behav;
-
-use work.pkg.all;
-entity comp2 is
- port (s : bit);
-end comp2;
-
-architecture behav of comp is
- component comp2 is
- port (s : bit);
- end component;
-begin
- c2: comp2 port map (s);
-end behav;