aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/iirs.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/vhdl/iirs.adb')
-rw-r--r--src/vhdl/iirs.adb16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/vhdl/iirs.adb b/src/vhdl/iirs.adb
index d7546d2d7..06ee9a305 100644
--- a/src/vhdl/iirs.adb
+++ b/src/vhdl/iirs.adb
@@ -5356,6 +5356,22 @@ package body Iirs is
Set_Flag9 (Decl, Flag);
end Set_Has_Body;
+ function Get_Has_Parameter (Decl : Iir) return Boolean is
+ begin
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Has_Parameter (Get_Kind (Decl)),
+ "no field Has_Parameter");
+ return Get_Flag10 (Decl);
+ end Get_Has_Parameter;
+
+ procedure Set_Has_Parameter (Decl : Iir; Flag : Boolean) is
+ begin
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Has_Parameter (Get_Kind (Decl)),
+ "no field Has_Parameter");
+ Set_Flag10 (Decl, Flag);
+ end Set_Has_Parameter;
+
function Get_Has_Identifier_List (Decl : Iir) return Boolean is
begin
pragma Assert (Decl /= Null_Iir);