aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-prints.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/vhdl/vhdl-prints.adb')
-rw-r--r--src/vhdl/vhdl-prints.adb7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/vhdl/vhdl-prints.adb b/src/vhdl/vhdl-prints.adb
index 0ed2d8f31..88ae34fe6 100644
--- a/src/vhdl/vhdl-prints.adb
+++ b/src/vhdl/vhdl-prints.adb
@@ -3570,6 +3570,13 @@ package body Vhdl.Prints is
Disp_State (Get_Start_State (N));
OOB.Put (", final: ");
Disp_State (Get_Final_State (N));
+ OOB.Put (", active: ");
+ S := Get_Active_State (N);
+ if S = No_State then
+ OOB.Put ("-");
+ else
+ Disp_State (S);
+ end if;
OOB.New_Line;
S := Get_First_State (N);