diff options
author | gingold <gingold@b72b5c32-5f01-0410-b925-b5c7b92870f7> | 2005-11-07 23:18:35 +0000 |
---|---|---|
committer | gingold <gingold@b72b5c32-5f01-0410-b925-b5c7b92870f7> | 2005-11-07 23:18:35 +0000 |
commit | 004bd818080a8090ea61bfb9cd656b01fe4541e0 (patch) | |
tree | a09472ff8de767ccd7f84d64ffc3c3fc4179bb75 /iirs.ads | |
parent | d5888aa28f654fa58ec9f3914932885e36af3d5c (diff) | |
download | ghdl-004bd818080a8090ea61bfb9cd656b01fe4541e0.tar.gz ghdl-004bd818080a8090ea61bfb9cd656b01fe4541e0.tar.bz2 ghdl-004bd818080a8090ea61bfb9cd656b01fe4541e0.zip |
handle universal real div integer evaluation,
more optimizations added,
multi-thread ready grt,
bug fixes
Diffstat (limited to 'iirs.ads')
-rw-r--r-- | iirs.ads | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -2323,6 +2323,8 @@ package Iirs is -- -- Get/Set_Type (Field1) -- + -- Get/Set_Index_Subtype (Field2) + -- -- Get/Set_Prefix (Field3) -- -- Get/Set_Parameter (Field4) @@ -2887,7 +2889,6 @@ package Iirs is Iir_Predefined_Attribute_Rightof, Iir_Predefined_Attribute_Left, Iir_Predefined_Attribute_Right, - Iir_Predefined_Attribute_Low, Iir_Predefined_Attribute_Event, Iir_Predefined_Attribute_Active, Iir_Predefined_Attribute_Last_Event, @@ -4765,6 +4766,11 @@ package Iirs is function Get_Suffix (Target : Iir) return Iir; procedure Set_Suffix (Target : Iir; Suffix : Iir); + -- Set the designated index subtype of an array attribute. + -- Field: Field2 + function Get_Index_Subtype (Attr : Iir) return Iir; + procedure Set_Index_Subtype (Attr : Iir; St : Iir); + -- Parameter of an attribute. -- Field: Field4 function Get_Parameter (Target : Iir) return Iir; |