summaryrefslogtreecommitdiff
path: root/src/vhdl
diff options
context:
space:
mode:
authorTristan Gingold2015-01-16 22:05:29 +0100
committerTristan Gingold2015-01-16 22:05:29 +0100
commit682cd848b5cd28c96b15b9b0cca70f6192a4c9dc (patch)
tree0ca3de21624a55497f62526c944a8c107efa6d06 /src/vhdl
parent0b3a977fbfcff450637953735b3cb4c4abad5f66 (diff)
downloadghdl-682cd848b5cd28c96b15b9b0cca70f6192a4c9dc.tar.gz
ghdl-682cd848b5cd28c96b15b9b0cca70f6192a4c9dc.tar.bz2
ghdl-682cd848b5cd28c96b15b9b0cca70f6192a4c9dc.zip
disp_tree: add Max_Depth to limit recursion.
Diffstat (limited to 'src/vhdl')
-rw-r--r--src/vhdl/disp_tree.adb7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/vhdl/disp_tree.adb b/src/vhdl/disp_tree.adb
index 70731e3..21c9d34 100644
--- a/src/vhdl/disp_tree.adb
+++ b/src/vhdl/disp_tree.adb
@@ -33,6 +33,11 @@ package body Disp_Tree is
-- function Is_Anonymous_Type_Definition (Def : Iir) return Boolean
-- renames Iirs_Utils.Is_Anonymous_Type_Definition;
+ -- Max depth for Disp_Iir. Can be modified from a debugger.
+ pragma Warnings (Off);
+ Max_Depth : Natural := 10;
+ pragma Warnings (On);
+
procedure Disp_Iir (N : Iir;
Indent : Natural := 1;
Flat : Boolean := False);
@@ -366,7 +371,7 @@ package body Disp_Tree is
Put_Line (Image_Location_Type (Get_Location (N)));
-- Protect against infinite recursions.
- if Indent > 20 then
+ if Indent > Max_Depth then
Put_Indent (Indent);
Put_Line ("...");
return;