aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/disp_vhdl.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/vhdl/disp_vhdl.adb')
-rw-r--r--src/vhdl/disp_vhdl.adb5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vhdl/disp_vhdl.adb b/src/vhdl/disp_vhdl.adb
index c35dcfd50..f239eff1a 100644
--- a/src/vhdl/disp_vhdl.adb
+++ b/src/vhdl/disp_vhdl.adb
@@ -2122,6 +2122,11 @@ package body Disp_Vhdl is
procedure Disp_Monadic_Operator (Expr: Iir) is
begin
+ if Get_Kind (Expr) = Iir_Kind_Implicit_Condition_Operator then
+ Disp_Expression (Get_Operand (Expr));
+ return;
+ end if;
+
Put (Name_Table.Image (Iirs_Utils.Get_Operator_Name (Expr)));
Put (' ');
if Flag_Parenthesis then