aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-sem_stmts.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-09-01 11:02:25 +0200
committerTristan Gingold <tgingold@free.fr>2019-09-02 20:40:55 +0200
commitfdd89d0259d35d76c56770c74f6ffee8b5ebf239 (patch)
treeb26d1ad5c2e388fcfa7859b53560f873d3cf9915 /src/vhdl/vhdl-sem_stmts.adb
parentc6ee7f41e2f86d8d46cd559f32cd290b99b46178 (diff)
downloadghdl-fdd89d0259d35d76c56770c74f6ffee8b5ebf239.tar.gz
ghdl-fdd89d0259d35d76c56770c74f6ffee8b5ebf239.tar.bz2
ghdl-fdd89d0259d35d76c56770c74f6ffee8b5ebf239.zip
vhdl: renames Conditional_Expression to Conditional_Expression_Chain.
Diffstat (limited to 'src/vhdl/vhdl-sem_stmts.adb')
-rw-r--r--src/vhdl/vhdl-sem_stmts.adb9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/vhdl/vhdl-sem_stmts.adb b/src/vhdl/vhdl-sem_stmts.adb
index 96c23ac8b..ca02e505f 100644
--- a/src/vhdl/vhdl-sem_stmts.adb
+++ b/src/vhdl/vhdl-sem_stmts.adb
@@ -780,7 +780,8 @@ package body Vhdl.Sem_Stmts is
end case;
end Sem_Signal_Assignment;
- procedure Sem_Conditional_Expression (Cond_Expr : Iir; Atype : in out Iir)
+ procedure Sem_Conditional_Expression_Chain
+ (Cond_Expr : Iir; Atype : in out Iir)
is
El : Iir;
Expr : Iir;
@@ -812,7 +813,7 @@ package body Vhdl.Sem_Stmts is
El := Get_Chain (El);
end loop;
- end Sem_Conditional_Expression;
+ end Sem_Conditional_Expression_Chain;
procedure Sem_Variable_Assignment (Stmt: Iir)
is
@@ -874,8 +875,8 @@ package body Vhdl.Sem_Stmts is
end if;
when Iir_Kind_Conditional_Variable_Assignment_Statement =>
- Expr := Get_Conditional_Expression (Stmt);
- Sem_Conditional_Expression (Expr, Stmt_Type);
+ Expr := Get_Conditional_Expression_Chain (Stmt);
+ Sem_Conditional_Expression_Chain (Expr, Stmt_Type);
end case;
exit when Done;