aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-08-04 04:07:28 +0200
committerTristan Gingold <tgingold@free.fr>2022-08-04 04:07:28 +0200
commitbba4c415f1742478fed72fb8fc3017dda0abb156 (patch)
tree0b0292946185439953e916ef00d0219623c203f1
parent707804d47fa5280e3c096b9b512a629e69007697 (diff)
downloadghdl-bba4c415f1742478fed72fb8fc3017dda0abb156.tar.gz
ghdl-bba4c415f1742478fed72fb8fc3017dda0abb156.tar.bz2
ghdl-bba4c415f1742478fed72fb8fc3017dda0abb156.zip
vhdl-prints.adb: avoid crash on PSL endpoints
-rw-r--r--src/vhdl/vhdl-prints.adb15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/vhdl/vhdl-prints.adb b/src/vhdl/vhdl-prints.adb
index d65df34d2..ada2dc15a 100644
--- a/src/vhdl/vhdl-prints.adb
+++ b/src/vhdl/vhdl-prints.adb
@@ -252,7 +252,8 @@ package body Vhdl.Prints is
| Iir_Kinds_Quantity_Declaration
| Iir_Kind_Group_Template_Declaration
| Iir_Kind_Character_Literal
- | Iir_Kinds_Process_Statement =>
+ | Iir_Kinds_Process_Statement
+ | Iir_Kind_Psl_Endpoint_Declaration =>
Disp_Identifier (Ctxt, Decl);
when Iir_Kind_Anonymous_Type_Declaration =>
Start_Lit (Ctxt, Tok_Identifier);
@@ -2379,6 +2380,7 @@ package body Vhdl.Prints is
is
Decl : constant PSL_Node := Get_Psl_Declaration (Stmt);
begin
+ Start_Hbox (Ctxt);
if Vhdl_Std < Vhdl_08 then
OOB.Put ("--psl ");
end if;
@@ -2401,10 +2403,16 @@ package body Vhdl.Prints is
Disp_Token (Ctxt, Tok_Is);
Print_Sequence (Ctxt, Get_Sequence (Decl));
Disp_Token (Ctxt, Tok_Semi_Colon);
- Disp_PSL_NFA (Get_PSL_NFA (Stmt));
when others =>
PSL.Errors.Error_Kind ("disp_psl_declaration", Decl);
end case;
+ Close_Hbox (Ctxt);
+ case Get_Kind (Decl) is
+ when N_Endpoint_Declaration =>
+ Disp_PSL_NFA (Get_PSL_NFA (Stmt));
+ when others =>
+ null;
+ end case;
end Disp_Psl_Declaration;
procedure Disp_Declaration_Chain
@@ -4916,7 +4924,8 @@ package body Vhdl.Prints is
| Iir_Kind_Terminal_Declaration
| Iir_Kinds_Quantity_Declaration
| Iir_Kind_Component_Declaration
- | Iir_Kind_Group_Template_Declaration =>
+ | Iir_Kind_Group_Template_Declaration
+ | Iir_Kind_Psl_Endpoint_Declaration =>
Disp_Name_Of (Ctxt, Expr);
when Iir_Kind_Function_Body