diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-05-12 18:18:57 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-05-12 18:18:57 +0200 |
commit | ed91bc80635cb78acb4728f7781ea7e37c748a48 (patch) | |
tree | 44606b8b7d161f85989b68e7a35fd423aa9eb169 | |
parent | f3941875b894fd0e8744fbee5a7fb2904c0ddde8 (diff) | |
download | ghdl-ed91bc80635cb78acb4728f7781ea7e37c748a48.tar.gz ghdl-ed91bc80635cb78acb4728f7781ea7e37c748a48.tar.bz2 ghdl-ed91bc80635cb78acb4728f7781ea7e37c748a48.zip |
elab-vhdl_debug: also disp declarations in instances
-rw-r--r-- | src/synth/elab-vhdl_debug.adb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/synth/elab-vhdl_debug.adb b/src/synth/elab-vhdl_debug.adb index 1aec73a94..bdab9674f 100644 --- a/src/synth/elab-vhdl_debug.adb +++ b/src/synth/elab-vhdl_debug.adb @@ -374,10 +374,7 @@ package body Elab.Vhdl_Debug is Put (Image (Get_Identifier (Sub_Node))); Put (')'); New_Line; - Disp_Hierarchy_Statements - (Sub, - Get_Concurrent_Statement_Chain (Sub_Node), - Inc_Indent (Cfg)); + Disp_Hierarchy (Sub, Inc_Indent (Cfg)); when others => raise Internal_Error; end case; |