aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/sem_util.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/sem_util.adb')
-rw-r--r--gcc/ada/sem_util.adb13
1 files changed, 5 insertions, 8 deletions
diff --git a/gcc/ada/sem_util.adb b/gcc/ada/sem_util.adb
index 6cba060..806b648 100644
--- a/gcc/ada/sem_util.adb
+++ b/gcc/ada/sem_util.adb
@@ -7756,9 +7756,7 @@ package body Sem_Util is
if Compile_Time_Known_Value (Exp) then
return True;
- elsif Is_Entity_Name (Exp)
- and then Present (Entity (Exp))
- then
+ elsif Is_Entity_Name (Exp) and then Present (Entity (Exp)) then
return Is_Constant_Object (Entity (Exp))
or else Ekind (Entity (Exp)) = E_Enumeration_Literal;
@@ -9582,11 +9580,10 @@ package body Sem_Util is
return Ekind (Op) = E_Function
and then Is_Intrinsic_Subprogram (Op)
and then
- ((Present_System_Aux
- and then Scope (Op) = System_Aux_Id)
- or else
- (True_VMS_Target
- and then Scope (Scope (Op)) = RTU_Entity (System)));
+ ((Present_System_Aux and then Scope (Op) = System_Aux_Id)
+ or else
+ (True_VMS_Target
+ and then Scope (Scope (Op)) = RTU_Entity (System)));
end Is_VMS_Operator;
-----------------