aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/simulate/debugger.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/vhdl/simulate/debugger.adb')
-rw-r--r--src/vhdl/simulate/debugger.adb10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/vhdl/simulate/debugger.adb b/src/vhdl/simulate/debugger.adb
index b56efafc6..a2532f2e7 100644
--- a/src/vhdl/simulate/debugger.adb
+++ b/src/vhdl/simulate/debugger.adb
@@ -123,6 +123,16 @@ package body Debugger is
-- Current statement for next_stmt.
Exec_Statement : Iir;
+ procedure Disp_Iir_Location (N : Iir) is
+ begin
+ if N = Null_Iir then
+ Put (Standard_Error, "??:??:??");
+ else
+ Put (Standard_Error, Disp_Location (N));
+ end if;
+ Put (Standard_Error, ": ");
+ end Disp_Iir_Location;
+
-- Disp a message during execution.
procedure Error_Msg_Exec (Msg: String; Loc: in Iir) is
begin