diff options
author | gingold <gingold@b72b5c32-5f01-0410-b925-b5c7b92870f7> | 2007-04-22 06:16:11 +0000 |
---|---|---|
committer | gingold <gingold@b72b5c32-5f01-0410-b925-b5c7b92870f7> | 2007-04-22 06:16:11 +0000 |
commit | 19db894c481e5c3fca89862ef244803c63a54ed7 (patch) | |
tree | d04ed7d0707a74fb072fb57f88948a8416c00375 /translate/grt | |
parent | 301584eaf540c982676f520d662b473e59890584 (diff) | |
download | ghdl-19db894c481e5c3fca89862ef244803c63a54ed7.tar.gz ghdl-19db894c481e5c3fca89862ef244803c63a54ed7.tar.bz2 ghdl-19db894c481e5c3fca89862ef244803c63a54ed7.zip |
synchronized to ghdl 0.26
Diffstat (limited to 'translate/grt')
-rw-r--r-- | translate/grt/grt-processes.adb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/translate/grt/grt-processes.adb b/translate/grt/grt-processes.adb index 54eb28bf5..d8d8a61d5 100644 --- a/translate/grt/grt-processes.adb +++ b/translate/grt/grt-processes.adb @@ -853,7 +853,9 @@ package body Grt.Processes is exit; end if; if Current_Time > Stop_Time then - Info ("simulation stopped by --stop-time"); + if Current_Time /= Last_Time then + Info ("simulation stopped by --stop-time"); + end if; exit; end if; end loop; |