diff options
Diffstat (limited to 'src/vhdl/vhdl-prints.adb')
-rw-r--r-- | src/vhdl/vhdl-prints.adb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/vhdl/vhdl-prints.adb b/src/vhdl/vhdl-prints.adb index f1704476a..634e2be3c 100644 --- a/src/vhdl/vhdl-prints.adb +++ b/src/vhdl/vhdl-prints.adb @@ -3601,6 +3601,16 @@ package body Vhdl.Prints is when Iir_Kind_Signature => Disp_Signature (Ctxt, Expr); + when Iir_Kind_Error => + declare + Orig : constant Iir := Get_Error_Origin (Expr); + begin + if Orig /= Null_Iir then + Print (Ctxt, Orig); + else + Error_Kind ("print/error", Expr); + end if; + end; when others => Error_Kind ("print", Expr); end case; |