comparison gcc/ada/snames.adb-tmpl @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
132 return Attribute_CPU; 132 return Attribute_CPU;
133 elsif N = Name_Dispatching_Domain then 133 elsif N = Name_Dispatching_Domain then
134 return Attribute_Dispatching_Domain; 134 return Attribute_Dispatching_Domain;
135 elsif N = Name_Interrupt_Priority then 135 elsif N = Name_Interrupt_Priority then
136 return Attribute_Interrupt_Priority; 136 return Attribute_Interrupt_Priority;
137 elsif N = Name_Secondary_Stack_Size then
138 return Attribute_Secondary_Stack_Size;
139 else 137 else
140 return Attribute_Id'Val (N - First_Attribute_Name); 138 return Attribute_Id'Val (N - First_Attribute_Name);
141 end if; 139 end if;
142 end Get_Attribute_Id; 140 end Get_Attribute_Id;
143 141