aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/back_end.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2016-10-15 13:23:36 +0200
committerTristan Gingold <tgingold@free.fr>2016-10-15 13:23:36 +0200
commit0d82b72ca11cb249888356caec800ddd43a70c82 (patch)
tree32aff68491cf3ecf5b168736cb783f988af96ea1 /src/vhdl/back_end.ads
parent6130e048c1dc667684d16792e9439a95483cbeb3 (diff)
downloadghdl-0d82b72ca11cb249888356caec800ddd43a70c82.tar.gz
ghdl-0d82b72ca11cb249888356caec800ddd43a70c82.tar.bz2
ghdl-0d82b72ca11cb249888356caec800ddd43a70c82.zip
Finish_Compilation: factorize code, move to libraries.
Diffstat (limited to 'src/vhdl/back_end.ads')
-rw-r--r--src/vhdl/back_end.ads12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/vhdl/back_end.ads b/src/vhdl/back_end.ads
index e9db8bd42..00ac5c429 100644
--- a/src/vhdl/back_end.ads
+++ b/src/vhdl/back_end.ads
@@ -26,18 +26,6 @@ package Back_End is
type Disp_Option_Acc is access procedure;
Disp_Option : Disp_Option_Acc := null;
- -- UNIT is a design unit from parse.
- -- According to the current back-end, do what is necessary.
- --
- -- If MAIN is true, then UNIT is a wanted to be analysed design unit, and
- -- dump/list options can applied.
- -- This avoid to dump/list units fetched (through a selected name or a
- -- use clause) indirectly by the main unit.
- type Finish_Compilation_Acc is access
- procedure (Unit : Iir_Design_Unit; Main : Boolean := False);
-
- Finish_Compilation : Finish_Compilation_Acc := null;
-
-- DECL is an architecture (library unit) or a subprogram (specification)
-- decorated with a FOREIGN attribute. Do back-end checks.
-- May be NULL for no additionnal checks.