aboutsummaryrefslogtreecommitdiffstats
path: root/src/edif/edif-nodes_meta.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-12-30 16:21:31 +0100
committerTristan Gingold <tgingold@free.fr>2020-12-30 16:21:31 +0100
commitfbe43ad4dc8451fecba5318af97541283207a0e8 (patch)
treec0b14620dd40cbde9c092c1e2e2e6365278c67ab /src/edif/edif-nodes_meta.adb
parent20d867fef338b0d8f0604e99db5383ab69ad63ae (diff)
downloadghdl-fbe43ad4dc8451fecba5318af97541283207a0e8.tar.gz
ghdl-fbe43ad4dc8451fecba5318af97541283207a0e8.tar.bz2
ghdl-fbe43ad4dc8451fecba5318af97541283207a0e8.zip
src/edif: Rename Direction_Type to avoid hiding in types.ads
Diffstat (limited to 'src/edif/edif-nodes_meta.adb')
-rw-r--r--src/edif/edif-nodes_meta.adb18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/edif/edif-nodes_meta.adb b/src/edif/edif-nodes_meta.adb
index 2b3368d31..e480da8d7 100644
--- a/src/edif/edif-nodes_meta.adb
+++ b/src/edif/edif-nodes_meta.adb
@@ -50,7 +50,7 @@ package body Edif.Nodes_Meta is
Field_Cell_Ref => Type_Node,
Field_Library_Ref => Type_Node,
Field_View => Type_Node,
- Field_Direction => Type_Direction_Type,
+ Field_Direction => Type_Dir_Type,
Field_Boolean => Type_Boolean,
Field_Value => Type_Node,
Field_Owner => Type_Node,
@@ -481,29 +481,29 @@ package body Edif.Nodes_Meta is
end case;
end Set_Boolean;
- function Get_Direction_Type
- (N : Node; F : Fields_Enum) return Direction_Type is
+ function Get_Dir_Type
+ (N : Node; F : Fields_Enum) return Dir_Type is
begin
- pragma Assert (Fields_Type (F) = Type_Direction_Type);
+ pragma Assert (Fields_Type (F) = Type_Dir_Type);
case F is
when Field_Direction =>
return Get_Direction (N);
when others =>
raise Internal_Error;
end case;
- end Get_Direction_Type;
+ end Get_Dir_Type;
- procedure Set_Direction_Type
- (N : Node; F : Fields_Enum; V: Direction_Type) is
+ procedure Set_Dir_Type
+ (N : Node; F : Fields_Enum; V: Dir_Type) is
begin
- pragma Assert (Fields_Type (F) = Type_Direction_Type);
+ pragma Assert (Fields_Type (F) = Type_Dir_Type);
case F is
when Field_Direction =>
Set_Direction (N, V);
when others =>
raise Internal_Error;
end case;
- end Set_Direction_Type;
+ end Set_Dir_Type;
function Get_Int32
(N : Node; F : Fields_Enum) return Int32 is