aboutsummaryrefslogtreecommitdiffstats
path: root/disp_tree.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2014-09-06 06:43:21 +0200
committerTristan Gingold <tgingold@free.fr>2014-09-06 06:43:21 +0200
commit75fcb55685369ab176541cdce4b0874bd1774f55 (patch)
tree7fd55fc6c2ce1dc35966ed1413545c55eca5c2e3 /disp_tree.adb
parentfe6ff5794545ce9f7d00985b55cf9d5b18725ea0 (diff)
downloadghdl-75fcb55685369ab176541cdce4b0874bd1774f55.tar.gz
ghdl-75fcb55685369ab176541cdce4b0874bd1774f55.tar.bz2
ghdl-75fcb55685369ab176541cdce4b0874bd1774f55.zip
First run of OSVVM_2014_01 with gcc backend.
Diffstat (limited to 'disp_tree.adb')
-rw-r--r--disp_tree.adb10
1 files changed, 8 insertions, 2 deletions
diff --git a/disp_tree.adb b/disp_tree.adb
index db2102a33..1bd6cd118 100644
--- a/disp_tree.adb
+++ b/disp_tree.adb
@@ -349,14 +349,17 @@ package body Disp_Tree is
Disp_Decl_Ident;
when Iir_Kind_File_Type_Definition =>
Put ("file_type_definition");
- Disp_Identifier (Get_Type_Declarator (Tree));
+ Disp_Decl_Ident;
when Iir_Kind_Subtype_Definition =>
Put_Line ("subtype_definition");
when Iir_Kind_Physical_Type_Definition =>
Put ("physical_type_definition");
- Disp_Identifier (Get_Type_Declarator (Tree));
+ Disp_Decl_Ident;
when Iir_Kind_Physical_Subtype_Definition =>
Put_Line ("physical_subtype_definition");
+ when Iir_Kind_Protected_Type_Declaration =>
+ Put ("protected_type_declaration");
+ Disp_Decl_Ident;
when Iir_Kind_Scalar_Nature_Definition =>
Put ("scalar_nature_definition");
@@ -1429,6 +1432,9 @@ package body Disp_Tree is
Header ("file type mark:");
Disp_Tree_Flat (Get_File_Type_Mark (Tree), Ntab);
when Iir_Kind_Protected_Type_Declaration =>
+ if Flat_Decl then
+ return;
+ end if;
Header ("staticness: ", False);
Disp_Type_Staticness (Tree);
Header ("declarator:");