diff options
author | gingold | 2007-04-22 06:16:11 +0000 |
---|---|---|
committer | gingold | 2007-04-22 06:16:11 +0000 |
commit | 19db894c481e5c3fca89862ef244803c63a54ed7 (patch) | |
tree | d04ed7d0707a74fb072fb57f88948a8416c00375 /sem_expr.ads | |
parent | 301584eaf540c982676f520d662b473e59890584 (diff) | |
download | ghdl-19db894c481e5c3fca89862ef244803c63a54ed7.tar.gz ghdl-19db894c481e5c3fca89862ef244803c63a54ed7.tar.bz2 ghdl-19db894c481e5c3fca89862ef244803c63a54ed7.zip |
synchronized to ghdl 0.26
Diffstat (limited to 'sem_expr.ads')
-rw-r--r-- | sem_expr.ads | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sem_expr.ads b/sem_expr.ads index 0ab3847..428e8b6 100644 --- a/sem_expr.ads +++ b/sem_expr.ads @@ -93,8 +93,10 @@ package Sem_Expr is -- Semantize a procedure_call or a concurrent_procedure_call_statement. procedure Sem_Procedure_Call (Call : Iir_Procedure_Call; Stmt : Iir); - function Sem_Discrete_Range_Expression (Expr: Iir; A_Type: Iir) - return Iir; + -- Semantize a discrete range. If ANY_DIR is true, the range can't be a + -- null range (slice vs subtype -- used in static evaluation). + function Sem_Discrete_Range_Expression + (Expr: Iir; A_Type: Iir; Any_Dir: Boolean) return Iir; function Get_Discrete_Range_Staticness (Expr : Iir) return Iir_Staticness; -- Semantize a discrete range and convert to integer if both bounds are |