aboutsummaryrefslogtreecommitdiffstats
path: root/canon.adb
diff options
context:
space:
mode:
Diffstat (limited to 'canon.adb')
-rw-r--r--canon.adb18
1 files changed, 0 insertions, 18 deletions
diff --git a/canon.adb b/canon.adb
index e9d80b6aa..01576c4c4 100644
--- a/canon.adb
+++ b/canon.adb
@@ -56,24 +56,6 @@ package body Canon is
procedure Canon_Block_Configuration (Top : Iir_Design_Unit;
Conf : Iir_Block_Configuration);
- function Is_Signal_Object (Decl: Iir) return Boolean is
- Adecl: Iir;
- begin
- Adecl := Get_Base_Name (Decl);
- case Get_Kind (Adecl) is
- when Iir_Kind_Variable_Declaration
- | Iir_Kind_Variable_Interface_Declaration
- | Iir_Kind_Constant_Declaration
- | Iir_Kind_Constant_Interface_Declaration =>
- return False;
- when Iir_Kind_Signal_Declaration
- | Iir_Kind_Signal_Interface_Declaration =>
- return True;
- when others =>
- Error_Kind ("is_signal_object", Adecl);
- end case;
- end Is_Signal_Object;
-
procedure Canon_Extract_Sensitivity_Aggregate
(Aggr : Iir;
Sensitivity_List : Iir_List;