diff options
| author | Tristan Gingold <tgingold@free.fr> | 2022-09-25 06:35:55 +0200 | 
|---|---|---|
| committer | Tristan Gingold <tgingold@free.fr> | 2022-09-25 11:43:30 +0200 | 
| commit | d9b490f155b7a18184ba8e851832faca042acb4a (patch) | |
| tree | 5a576a5966aa1822d7d9988d76ea400b13f5c36d | |
| parent | a36fa0b9dd4dc1f3f4c60c1f00a7a883b41dff55 (diff) | |
| download | ghdl-d9b490f155b7a18184ba8e851832faca042acb4a.tar.gz ghdl-d9b490f155b7a18184ba8e851832faca042acb4a.tar.bz2 ghdl-d9b490f155b7a18184ba8e851832faca042acb4a.zip | |
synth-vhdl_stmts: fix missing newline in default assertion messages
| -rw-r--r-- | src/synth/synth-vhdl_stmts.adb | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/synth/synth-vhdl_stmts.adb b/src/synth/synth-vhdl_stmts.adb index ac121e292..e7477b5bb 100644 --- a/src/synth/synth-vhdl_stmts.adb +++ b/src/synth/synth-vhdl_stmts.adb @@ -3558,11 +3558,11 @@ package body Synth.Vhdl_Stmts is                   | Iir_Kind_Assertion_Statement                   | Iir_Kind_Concurrent_Assertion_Statement                   | Iir_Kind_Psl_Assert_Directive => -                  Put_Err ("Assertion violation."); +                  Put_Line_Err ("Assertion violation.");                 when Iir_Kind_Psl_Assume_Directive => -                  Put_Err ("Assumption violation."); +                  Put_Line_Err ("Assumption violation.");                 when Iir_Kind_Psl_Cover_Directive => -                  Put_Err ("sequence coveredr"); +                  Put_Line_Err ("sequence covered.");                 when others =>                    raise Internal_Error;              end case; | 
